Memory leak in the Surface Series

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
anauta2014
Newbie
Newbie
Posts: 48
Joined: Tue Apr 09, 2013 12:00 am

Memory leak in the Surface Series

Post by anauta2014 » Wed Feb 26, 2014 12:28 pm

I found a memory leak in the Surface series, will compile test1 program and after start will check memory by TaskManager
Attachments
test1.zip
(48.37 KiB) Downloaded 585 times
With best regards
Vladimir

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Memory leak in the Surface Series

Post by Yeray » Thu Feb 27, 2014 3:42 pm

Hello Vladimir,

I think with GDI it works better than with GDI+, could you please confirm it?
Delphi testing application:

Code: Select all

uses Chart, TeeGDIPlus, TeCanvas, TeeSurfa;

var Chart1: TChart;
    Series1: TSurfaceSeries;

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

  Chart1.View3D:=false;
  Chart1.Legend.Visible:=false;

  Series1:=Chart1.AddSeries(TSurfaceSeries) as TSurfaceSeries;
  Series1.FillSampleValues(128);

  RadioGroup1Click(Self);
end;

procedure TForm1.Timer1Timer(Sender: TObject);
var x, z: Integer;
begin
  for x:=0 to 127 do
    for z:=0 to 127 do
      Series1.Value[x,z]:=random(512);
end;

procedure TForm1.RadioGroup1Click(Sender: TObject);
begin
  case RadioGroup1.ItemIndex of
    0: if Chart1.Canvas is TTeeCanvas3D then
          Chart1.Canvas:=TGDIPlusCanvas.Create;
    1: if Chart1.Canvas is TGDIPlusCanvas then
          Chart1.Canvas:=TTeeCanvas3D.Create;
  end;
end;
After confirming it, if you want you can add it to the bugzilla tracking system:
http://bugs.teechart.net/
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

anauta2014
Newbie
Newbie
Posts: 48
Joined: Tue Apr 09, 2013 12:00 am

Re: Memory leak in the Surface Series

Post by anauta2014 » Fri Feb 28, 2014 8:23 am

Hi Yeray
I've just checked with the GDI rendering, the bug exists also with the same rate of the memory leak.
By the way, this bug exists only in the last version of the TeeChart, the previous works fine, for this reason I am using now the previous version of the TeeChart (from November 2013).

The TColorBand bug (my other report) also is absent in the previous version.
With best regards
Vladimir

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: Memory leak in the Surface Series

Post by Narcís » Fri Feb 28, 2014 11:30 am

Hi Vladimir,

Thanks for your feedback. I could reproduce the issue here and added it to the bug list (ID611). Please feel free to sign up at Steema Software's bugzilla platform to be able to get automatic issue update notifications.
anauta2014 wrote:The TColorBand bug (my other report) also is absent in the previous version.
It has just been fixed for the next maintenance release, see David Berneda's comment.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: Memory leak in the Surface Series

Post by Narcís » Fri Feb 28, 2014 2:04 pm

Hi Vladimir,

This is not a memory leak, see David's comment.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply