TiPlotDataCursor.HintShow

TiPlotDataCursor

Specifies whether the hint is shown.

property HintShow : Boolean;

Description

Use HintShow to specify whether the hint is shown next to the data cursor in the DataView area. You will generally want to leave this value set to TRUE so that the X and/or Y values of the cursor are displayed next to the cursor.

When this property is set to FALSE, you will need to use the OnCursorChange event to be notified when the cursor moves so that you can externally display or react to the X and Y values of the cursor.

Example

Delphi

iComponent.DataCursor[0].HintShow := True;

C++ Builder

iComponent->DataCursor[0]->HintShow = TRUE;

Contents | Index | Previous | Next