TiPlotComponent.Legend
TiPlotComponent See Also
Used to access a specific legend object.
property Legend[Index : Integer]: TiPlotLegend;
Description
Use Legend to access a specific legend object.
Currently, only one legend object is supported at this time and the multiple
legend interface is for future expansion. The LegendCount, AddLegend,
DeleteLegend, and RemoveAllLegends are reserved for property editors at this time. Always
use an Index of zero when accessing the legend.
Example
Delphi
iComponent.Legend[0].Visible := True;
C++ Builder
iComponent->Legend[0]->Visible = True;
Note: Index is zero based.
Contents | Index | Previous | Next