Steema Issues Database

Note: 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.



Bug 1438

Summary: TIsoSurfaceSeries slow performance compared to TSurfaceSeries
Product: VCL TeeChart Reporter: yeray alonso <yeray>
Component: SeriesAssignee: Steema Issue Manager <issuemanager>
Status: CONFIRMED ---    
Severity: enhancement    
Priority: ---    
Version: 140220   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
URL: http://www.teechart.net/support/viewtopic.php?f=3&t=15968
Chart Series: IsoSurface Delphi / C++ Builder RAD IDE Version:

Description yeray alonso 2016-02-16 04:42:22 EST
Comparing the performance of the TIsoSurfaceSeries with the TSurfaceSeries, the repaints of the first are very slow.

var Chart1: TChart;

procedure TForm1.FormCreate(Sender: TObject);
begin
  Chart1:=TChart.Create(Self);
  Chart1.Parent:=Self;
  Chart1.Align:=alClient;

  Chart1.Aspect.Orthogonal:=false;
  Chart1.Chart3DPercent:=100;
  Chart1.Aspect.Zoom:=70;
  Chart1.Legend.Visible:=false;

  //Chart1.AddSeries(TSurfaceSeries).FillSampleValues(100);
  Chart1.AddSeries(TIsoSurfaceSeries).FillSampleValues(100);
end;
Comment 1 yeray alonso 2016-11-17 07:59:36 EST
The TIsoSurfaceSeries drawing performance got worse with v2014.10.