Skip to main content
All docs
V25.1
  • HeatmapAxis.Tickmarks Property

    Returns axis tickmark settings.

    Namespace: DevExpress.XtraCharts.Heatmap

    Assembly: DevExpress.XtraCharts.v25.1.dll

    NuGet Package: DevExpress.Charts

    Declaration

    [XtraChartsLocalizableCategory(XtraChartsCategory.Elements)]
    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.

    Heatmap axis tickmarks

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