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

    Specifies whether tickmarks are visible.

    Namespace: DevExpress.XtraCharts.Heatmap

    Assembly: DevExpress.XtraCharts.v25.1.dll

    NuGet Package: DevExpress.Charts

    Declaration

    public bool Visible { get; set; }

    Property Value

    Type Description
    Boolean

    true to show tickmarks; 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