TiPlotDataCursor.HintOrientationSide
TiPlotDataCursor
Specifies the orientation of the data cursor object's hint.
type TiOrientationSide = (iosBottomRight, iosTopLeft);
property HintOrientationSide : TiOrientationSide;
Description
Use HintOrientationSide to get or set the orientation of the hint displayed
next to the cursor.
Note: the orientation will automatically be flipped if a cursor is moved in such a
way as to move the hint window outside of the DataView area (i.e. there is no
room between the cursor and the edge of the DataView boundaries).
These are the possible values:
Value
Meaning
iosBottomRight
Displays the hint to the right of a vertical cursor and below a horizontal
cursor.
iosTopLeft
Displays the hint to the left of a vertical cursor and above a horizontal
cursor.
Example
Delphi
iComponent.DataCursor[0].HintOrientationSide := iosBottomRight;
C++ Builder
iComponent->DataCursor[0]->HintOrientationSide = iosBottomRight;
Contents | Index | Previous | Next