Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

HeatmapAxis.CustomLabelItemTemplateSelector Property

Gets or sets an object that chooses a template for custom axis labels based on custom logic.

Namespace: DevExpress.Xpf.Charts.Heatmap

Assembly: DevExpress.Xpf.Charts.v24.2.dll

NuGet Package: DevExpress.Wpf.Charts

#Declaration

public DataTemplateSelector CustomLabelItemTemplateSelector { get; set; }

#Property Value

Type Description
DataTemplateSelector

Chooses a template based on custom logic.

#Remarks

The HeatmapAxis.CustomLabelItemTemplate property specifies a template that defines the appearance of custom axis labels. If you have more than one custom axis label template, you can implement custom logic to choose the required template:

  1. Create a template selector - a class that chooses a template based on the condition. This class should derive from the DataTemplateSelector class.
  2. Override the SelectTemplate method to return a template that meets the required condition.
  3. Assign the instance of the template selector class to the CustomLabelItemTemplateSelector property.

If you specify both the HeatmapAxis.CustomLabelItemTemplate and CustomLabelItemTemplateSelector, the Heatmap Control uses the template returned by the template selector.

See Also