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

HeatmapControl.Titles Property

Returns the collection of heatmap titles.

Namespace: DevExpress.Xpf.Charts.Heatmap

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

NuGet Package: DevExpress.Wpf.Charts

#Declaration

public TitleCollection Titles { get; }

#Property Value

Type Description
TitleCollection

The collection of heatmap titles.

#Remarks

You can add multiple titles to a heatmap. To do this, add Title objects to the Heatmap Control’s Titles collection and specify their Content properties.

xml
<dxh:HeatmapControl ToolTipEnabled="True">
    <dxh:HeatmapControl.Titles>
        <dxc:Title Content="Balance of Trade" HorizontalAlignment="Center"/>
    </dxh:HeatmapControl.Titles>
</dxh:HeatmapControl>
See Also