HeatmapAxis.Tickmarks Property
Returns axis tickmark settings.
Namespace: DevExpress.XtraCharts.Heatmap
Assembly: DevExpress.XtraCharts.v24.1.dll
NuGet Package: DevExpress.Charts
Declaration
[XtraChartsLocalizableCategory(XtraChartsCategory.Elements)]
[XtraSerializableProperty(XtraSerializationVisibility.Content)]
public HeatmapTickmarks Tickmarks { get; }
Property Value
Type | Description |
---|---|
HeatmapTickmarks | Contains settings for heatmap axis tickmarks. |
Remarks
Use an axis’s Tickmarks
property to access tickmark appearance settings. Note that tickmarks are painted the same color as the axis to which they belong. The tickmark frequency depends on the axis GridSpacing property value.
HeatmapTickmarks tickmarks = heatmap.AxisX.Tickmarks;
tickmarks.CrossAxis = true;
tickmarks.Length = 10;
tickmarks.Thickness = 4;
tickmarks.Visible = true;
See Also