TiPlotAxis.CursorMinLength
TiPlotAxis
Specifies the minimum label length used in calculating the length of
DataCursor values.
property CursorMinLength : Integer;
Description
Use CursorMinLength to get or set the minimum label length used in calculating
the DataCursor Hint text for values associated with this axis. If this is an
X-Axis, then this property will only affect X-Values displayed in the
DataCursor Hint Text. If this is a Y-Axis, then only Y-Values will be affected.
Note: this property only has effect if CursorUseDefaultFormat is set to FALSE. If CursorUseDefaultFormat is set to TRUE, then the Axis LabelsMinLength will override this property.
Example
Delphi
iComponent.XAxis[0].CursorMinLength := 5;
iComponent.YAxis[0].CursorMinLength := 5;
C++ Builder
iComponent->XAxis[0]->CursorMinLength = 5;
iComponent->YAxis[0]->CursorMinLength = 5;
Contents | Index | Previous | Next