Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxChartAxisTicks.MinorThickness Property

Specifies thickness of minor tick marks on an axis, in pixels.

#Declaration

Delphi
property MinorThickness: Single read; write;

#Property Value

Type Description
Single

The current thickness (in pixels) of minor tick marks at 96 DPI. The property value can be 1 or higher.

#Remarks

Use Thickness and MinorThickness properties to adjust thickness of major and minor ticks on an axis, respectively.

#Property Value Examples

Value Example[1]
1 (default) VCL Chart Control: Minor Tick Marks with the Default Thickness on X and Y Axes
2 VCL Chart Control: Minor Tick Marks with Double Thickness on X and Y Axes

#Property Setter Behavior

The MinorThickness property setter changes the property value to 1 if you assign a value below 1 to the MinorThickness property.

#Property Values and Scaling

The MinorThickness property specifies the base thickness (in pixels) of minor tick marks that corresponds to 96 DPI. The Chart control’s draw routines multiply the MinorThickness property value by the current scale factor and round the result to the nearest integer to calculate actual thickness of minor tick marks on the target screen.

The MinorThickness property’s default value is 1.

Footnotes
  1. These examples demonstrate different AxisX.Ticks.MinorThickness and AxisY.Ticks.MinorThickness property values on the same diagram.

See Also