TColorGridSeries limits

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
beetle
Newbie
Newbie
Posts: 59
Joined: Fri Dec 12, 2003 5:00 am

TColorGridSeries limits

Post by beetle » Wed Dec 22, 2004 12:22 pm

Hi!

I read anywhere that the maximum range for TColorGridSeries is
2000x2000. I need bigger grids... is there any "Define" with these limits?
Would it work to change these "Defines" and recompile the sources?


Thanks!
Bye.

Marjan
Site Admin
Site Admin
Posts: 745
Joined: Fri Nov 07, 2003 5:00 am
Location: Slovenia
Contact:

Post by Marjan » Wed Dec 22, 2004 1:12 pm

Hi.

In case you have TeeChart source code all you must do is increase the maximum number of allowed points in x and z direction and recompile TeeChart sources. Maximum number of cells is defined by the

Code: Select all

Const MaxAllowedCells=3000; { max 3000 x 3000 cells }
, declared in TeeSurfa.pas unit (TeeChart v7 VCL). If you want bigger matrix, just increase this value and recompile/reinstall TeeChart from source code. But be aware of the memory consumption in case you increase maximum allowed size.
Marjan Slatinek,
http://www.steema.com

beetle
Newbie
Newbie
Posts: 59
Joined: Fri Dec 12, 2003 5:00 am

Post by beetle » Wed Dec 22, 2004 4:08 pm

Thanks!! It's all I need.
Bye.

Post Reply