Skip to main content
All docs
V23.2

HeatmapTickmarks.CrossAxis Property

Specifies whether tickmarks are shown across the axis.

Namespace: DevExpress.XtraCharts.Heatmap

Assembly: DevExpress.XtraCharts.v23.2.dll

NuGet Package: DevExpress.Charts

Declaration

public bool CrossAxis { get; set; }

Property Value

Type Description
Boolean

true if tickmarks cross the axis; otherwise, false.

Example

The following example customizes x-axis tickmark settings:

Heatmap axis tickmarks

HeatmapTickmarks tickmarks = heatmap.AxisX.Tickmarks;
tickmarks.CrossAxis = true;
tickmarks.Length = 10;
tickmarks.Thickness = 4;
tickmarks.Visible = true;
See Also