TCustomChartGrid.Grid3DMode

TCustomChartGrid.Grid3DMode
TCustomChartGrid

property Grid3DMode: Boolean;

Unit
TeeChartGrid

Description
Determines how ChartGrid number of rows and columns are calculated.

When Grid3DMode is False (the default), the number of rows are the number of points in the series (plus the header rows), and the number of columns are one for the series values, another if series has "X" values, and another colum for colors and labels.

When Grid3DMode is True, the Series must be a Custom3DGrid series.
The number of rows will be the Custom3DGrid NumXValues property, and the number of columns will be the NumZValues property.
Thus, the chart grid will display a grid of values, each corresponding to a point in 3D series.


ChartGrid1.Series := Series1; // <-- example, a Surface series
ChartGrid1.Grid3DMode := True ;