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