Page 1 of 1

TColorGridSeries limits

Posted: Wed Dec 22, 2004 12:22 pm
by 9335230
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.

Posted: Wed Dec 22, 2004 1:12 pm
by Marjan
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.

Posted: Wed Dec 22, 2004 4:08 pm
by 9335230
Thanks!! It's all I need.
Bye.