Skip to main content
All docs
V24.1

HeatmapTickmarks.CrossAxis Property

Specifies whether tickmarks are shown across the axis.

Namespace: DevExpress.XtraCharts.Heatmap

Assembly: DevExpress.XtraCharts.v24.1.dll

NuGet Package: DevExpress.Charts

Declaration

[TypeConverter(typeof(BooleanTypeConverter))]
[XtraSerializableProperty]
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