Skip to main content
A newer version of this page is available. .

Axis.TickLabelPosition Property

Gets or sets the position of the tick-mark labels on the axis.

Namespace: DevExpress.Spreadsheet.Charts

Assembly: DevExpress.Spreadsheet.v18.2.Core.dll

Declaration

AxisTickLabelPosition TickLabelPosition { get; set; }

Property Value

Type Description
AxisTickLabelPosition

An AxisTickLabelPosition enumeration value specifying the label position.

Available values:

Name Description
None

Specifies that axis labels should not be displayed.

High

Specifies that axis labels should be displayed at the top of the chart (for the category and series axes) or on the right side of the chart (for the value axis).

Low

Specifies that axis labels should be displayed at the bottom of the chart (for the category and series axes) or on the left side of the chart (for the value axis).

NextTo

Specifies that axis labels should be displayed next to the axis.

Remarks

Use the TickLabelPosition property to determine where the tick-mart labels will be located on the chart. To hide axis labels, set the TickLabelPosition property to the AxisTickLabelPosition.None value.

To specify the interval between axis labels on the category or series axes, use the Axis.TickLabelSkip property. To set the distance between the category axis and its labels, utilize the Axis.LabelOffset property.

Note

Currently, the SpeadsheetControl allows you to hide tick-mark labels or display them next to the axis. Other options (such as High and Low) are not supported. However, display settings are loaded and stored in supported formats, and you can modify them programmatically.

See Also