Skip to main content
All docs
V25.1
  • HeatmapTickmarks.Thickness Property

    Gets or sets the thickness of tickmarks in pixels.

    Namespace: DevExpress.XtraCharts.Heatmap

    Assembly: DevExpress.XtraCharts.v25.1.dll

    NuGet Package: DevExpress.Charts

    Declaration

    public int Thickness { get; set; }

    Property Value

    Type Description
    Int32

    An integer that defines the tickmark thickness in pixels.

    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