IColorGridSeries.Bitmap
IColorGridSeries

property Bitmap: Integer;

Type Library
TeeChartx

Description
The Bitmap property has two uses:

1) Returns the internal bitmap used to paint the color grid series.

This bitmap is created and filled using color grid series "Y" values.

The bitmap dimensions (width and height) are taken from the X and Z values.

2) Setting Bitmap defines the Bitmap used as the color source for the color grid.

The ColorGrid series will use this bitmap as the origin of values.

Each pixel color in the bitmap will determine the "Y" value of the color grid series.

Example [Visual Basic]:

Private Sub Form_Load()

TChart1.Series(0).FillSampleValues 10

TChart1.Series(0).asColorGrid.Bitmap = Picture1.Picture

End Sub