TiPlotComponent.DataCursor

TiPlotComponent

Used to access a specific data cursor object.

property
DataCursor[Index : Integer] : TiPlotDataCursor;

Description

Use DataCursor to access a specific data cursor object. The index value is zero based and must be less than the DataCursorCount. To add a data cursor, use the AddDataCursor method. To delete a data cursor, use the DeleteDataCursor method. To remove all data cursors, use the RemoveAllDataCursors method.

Example

Delphi

iComponent.DataCursor[0].Pointer1Position := 10.5;

C++ Builder

iComponent->DataCursor[0]->Pointer1Position = 10.5;

Note: Index is zero based.

Contents | Index | Previous | Next