HeatmapTickmarks.CrossAxis Property
Specifies whether tickmarks are shown across the axis.
Namespace: DevExpress.XtraCharts.Heatmap
Assembly: DevExpress.XtraCharts.v25.1.dll
NuGet Package: DevExpress.Charts
Declaration
Property Value
| Type | Description |
|---|---|
| Boolean | true if tickmarks cross the axis; otherwise, false. |
Example
The following example customizes x-axis tickmark settings:

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