TiPlotComponent.DataView

TiPlotComponent See Also

Used to access a specific data view object.

property
DataView[Index : Integer] : TiPlotDataView;

Description

Use DataView to access a specific data view object.

Currently, only one data view object is supported at this time and the multiple data view interface is for future expansion. The DataViewCount, AddDataView, DeleteDataView, and RemoveAllDataViews are reserved for property editors at this time. Always use an Index of zero when accessing the data view.

Example

Delphi

iComponent.DataView[0].GridLineColor := clGreen;

C++ Builder

iComponent->DataView[0]->GridLineColor = clGreen;

Note: Index is zero based.

Contents | Index | Previous | Next