TiPlotDataCursor.Style

TiPlotDataCursor

Specifies the style of the data cursor object.

type TiPlotDataCursorStyle = (ipcsValueXY, ipcsValueX, ipcsValueY, ipcsDeltaX, ipcsDeltaY, ipcsInverseDeltaX);

property Style : TiPlotDataCursorStyle;

Description

Use Style to get or set the style of the data cursor object. The style determines the type and behavior of the cursor.

Note: data points are interpolated when used with the iPlot component.

These are the possible values:

Value
Meaning
ipcsValueXY
Displays Data Point's ValueX and ValueY with a single pointer line for the iPlot component and a cross-hair (two pointer lines) for the iXYPlot component.
ipcsValueX
Displays Data Point's ValueX with a single pointer line
ipcsValueY
Displays Data Point's ValueY with a single pointer line
ipcsDeltaX
Displays Data Points' X Span between to pointer lines. Use ValueX to retrieve the X Span.
ipcsDeltaY
Displays Data Points' Y Span between to pointer lines. Use ValueY to retrieve the Y Span.
ipcsInverseDeltaX
Displays Frequency between two pointer lines. Uses scale values and CursorScaler property of the associated channel's X-Axis. Use ValueX to retrieve the calculated value.

Example

Delphi

iComponent.DataCursor[0].Style := ipcsValueXY;

C++ Builder

iComponent->DataCursor[0]->Style = ipcsValueXY;

Contents | Index | Previous | Next