![]() | Steema Issues DatabaseNote: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;otherwise you can use StackOverflow. Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy. |
| Summary: | Plotting data is slower compared to previous version(s) | ||
|---|---|---|---|
| Product: | .NET TeeChart | Reporter: | sdgr |
| Component: | Chart | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | IN_PROGRESS --- | ||
| Severity: | major | CC: | chris |
| Priority: | --- | ||
| Version: | TeeChart.NET 2014 4.1.2014.12154 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
|
Description
sdgr
2015-06-29 08:32:18 EDT
Hello Stefan,
Running this code:
private Stopwatch watch = new Stopwatch();
private void button4_Click_1(object sender, EventArgs e)
{
tChart1.Clear();
watch.Restart();
tChart1.AfterDraw += TChart1_AfterDraw;
tChart1.Series.Add(typeof(Line)).FillSampleValues(100000);
}
private void TChart1_AfterDraw(object sender, Graphics3D g)
{
watch.Stop();
label1.Text = watch.ElapsedMilliseconds.ToString();
}
and clicking the button fix times (in Release mode), I get the following results:
4.1.2015.05143:
1246
1082
1013
848
934
4.1.2014.12153:
1080
1082
608
976
1073
I do not see a significant difference here. Do you get similar results at your end?
|