Importing data not setting the series title correctly (.net 6)

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
akshobrao
Newbie
Newbie
Posts: 12
Joined: Fri Aug 25, 2023 12:00 am

Importing data not setting the series title correctly (.net 6)

Post by akshobrao » Tue Jul 23, 2024 5:21 pm

Visual Studio 2022
Target framework .NET 6.0
Steema.TeeChart.net Version 4.2024.7.22

After loading a template file the series title does not get saved off correctly. This seems to work in ,netFramework but not in .net 6.0. In the two screenshots below the one in .net framework puts the Title to "test" whereas the on in .net 6.0 puts title to "line1"

public partial class Form1 : Form
{
Steema.TeeChart.TChart tChart1;
public Form1()
{
InitializeComponent();
tChart1 = new Steema.TeeChart.TChart();
this.Controls.Add(tChart1);
tChart1.Dock = DockStyle.Fill;
tChart1.Axes.Bottom.Visible = true;
tChart1.Axes.Left.Visible = true;
tChart1.Axes.Right.Visible = false;
tChart1.Legend.Visible = true;
tChart1.Legend.LegendStyle = LegendStyles.Series;

LoadData();
TemplateExport template = tChart1.Export.Template;
template.IncludeData = true;
tChart1.Export.Template.Save("template.json");


tChart1.Import.Template.Load("template.json");
}

private void LoadData()
{
tChart1.Legend.Alignment = Steema.TeeChart.LegendAlignments.Bottom;
Series line = new Line();
line.Title = "test";
line.Marks.FollowSeriesColor = true;
tChart1.Chart.Series.Add(line);

for (int i = 0; i < 1000; i++)
{
line.Add(i, i);
}
}
}
Attachments
DotNet_6.png
DotNet_6.png (32.13 KiB) Viewed 7609 times
DotNetFramework4_8.png
DotNetFramework4_8.png (30.32 KiB) Viewed 7609 times

Rubén
Newbie
Newbie
Posts: 20
Joined: Fri Nov 19, 2010 12:00 am

Re: Importing data not setting the series title correctly (.net 6)

Post by Rubén » Wed Jul 24, 2024 1:17 pm

Hi,

thanks for feedback. We're working on fix it.

Regards, Rubén.

Rubén
Newbie
Newbie
Posts: 20
Joined: Fri Nov 19, 2010 12:00 am

Re: Importing data not setting the series title correctly (.net 6)

Post by Rubén » Wed Jul 24, 2024 4:20 pm

Hello,

the problem has been resolved and the fix will be included with the next Nuget release.

Regards, Rubén.

Post Reply