Back to Devexpress

HeatmapAxis.CustomLabels Property

corelibraries-devexpress-dot-xtracharts-dot-heatmap-dot-heatmapaxis-b78c8118.md

latest2.2 KB
Original Source

HeatmapAxis.CustomLabels Property

Returns the collection of custom axis labels.

Namespace : DevExpress.XtraCharts.Heatmap

Assembly : DevExpress.XtraCharts.v25.2.dll

NuGet Package : DevExpress.Charts

Declaration

csharp
[XtraChartsLocalizableCategory(XtraChartsCategory.Elements)]
public CustomAxisLabelCollection CustomLabels { get; }
vb
<XtraChartsLocalizableCategory(XtraChartsCategory.Elements)>
Public ReadOnly Property CustomLabels As CustomAxisLabelCollection

Property Value

TypeDescription
CustomAxisLabelCollection

The custom label collection.

|

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:

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

See Also

HeatmapAxis Class

HeatmapAxis Members

DevExpress.XtraCharts.Heatmap Namespace