IChartGridNavigator.Grid
IChartGridNavigator
property Grid: IChartGrid;
Type Library
TeeChartx
Description
Use the Grid property to link the Grid Navigator with a Chartgrid.
Example [Visual Basic]
Private Sub Form_Load()
With TChart1
.AddSeries scLine
For i = 0 To 20
.Series(0).AddXY i, Rnd(i) * 100, Chr(65 + i), clTeeColor
Next i
End With
ChartGrid1.Chart = TChart1
ChartGridNavigator1.Grid = ChartGrid1
End Sub