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

    Specifies whether to display custom labels with default labels or in place of default labels.

    Namespace: DevExpress.XtraCharts.Heatmap

    Assembly: DevExpress.XtraCharts.v25.1.dll

    NuGet Package: DevExpress.Charts

    #Declaration

    [XtraChartsLocalizableCategory(XtraChartsCategory.Elements)]
    public AxisLabelVisibilityMode LabelVisibilityMode { get; set; }

    #Property Value

    Type Description
    AxisLabelVisibilityMode

    The value that specifies the visibility of axis labels.

    Available values:

    Name Description
    Default

    If an axis has custom labels, then automatically generated labels are not displayed.

    AutoGeneratedAndCustom

    An axis displays custom and automatically generated axis labels together.

    #Remarks

    You can display custom labels with default labels or in place of default labels. The adapter creates default labels based on cell arguments. Use the CustomLabels property to access an axis’s custom label collection. The following example displays a custom label on an x-axis:

    Heatmap axis - custom label

    heatmap.AxisX.CustomLabels.Add(new CustomAxisLabel { 
        AxisValue = "West", 
        Name = "Division: West", 
        BackColor = Color.LightGray });
    heatmap.AxisX.LabelVisibilityMode = AxisLabelVisibilityMode.AutoGeneratedAndCustom;
    
    See Also