TdxChartAxisTicks.Length Property
Specifies length of major tick marks on an axis, in pixels.
Declaration
property Length: Single read; write;
Property Value
Type | Description |
---|---|
Single | The current length (in pixels) of major tick marks at 96 DPI. The property value can be |
Remarks
Use the Length
and MinorLength properties to adjust length of major and minor ticks on an axis, respectively.
The Length
property setter changes the property value to 1
if you assign a value below 1
to the Length
property.
Examples
Value | Example[1] |
---|---|
5 (default) |
|
10 |
Property Values and Scaling
The Length
property specifies the base length (in pixels) of major tick marks that corresponds to 96 DPI. The Chart control’s draw routines multiply the Length
property value by the current scale factor and round the result to the nearest integer to calculate actual length of major tick marks on the target screen.
The Length
property’s default value is 5
.
Footnotes
See Also