XE3 FMX TeeChart Performance
Posted: Tue Nov 20, 2012 2:53 am
Dear,
Performance issues
I use Delphi 7 and TeeChart CPU load of 1 to 2%,
But Delphi XE3 and TeeChart CPU load of 10 to 11%,
I in the development of the stock software requires a lot of quick updates
How to solve the CPU load problem?
and Chart.Endupdate no response
EX,
procedure TForm1.FormCreate(Sender: TObject);
begin
Timer1.Interval := 250;
end;
procedure TForm1.Timer1Timer(Sender: TObject);
var i: Integer;
begin
// Chart1.BeginUpdate;
// series1.BeginUpdate;
series1.Clear;
for i := 0 to 1000 do
Series1.Add(i);
// series1.EndUpdate;
// Chart1.EndUpdate;
end;
Brian.
Performance issues
I use Delphi 7 and TeeChart CPU load of 1 to 2%,
But Delphi XE3 and TeeChart CPU load of 10 to 11%,
I in the development of the stock software requires a lot of quick updates
How to solve the CPU load problem?
and Chart.Endupdate no response
EX,
procedure TForm1.FormCreate(Sender: TObject);
begin
Timer1.Interval := 250;
end;
procedure TForm1.Timer1Timer(Sender: TObject);
var i: Integer;
begin
// Chart1.BeginUpdate;
// series1.BeginUpdate;
series1.Clear;
for i := 0 to 1000 do
Series1.Add(i);
// series1.EndUpdate;
// Chart1.EndUpdate;
end;
Brian.