Skip to main content
A newer version of this page is available. .
All docs
V22.1

HeatmapControl.Titles Property

Returns the collection of heatmap titles.

Namespace: DevExpress.Xpf.Charts.Heatmap

Assembly: DevExpress.Xpf.Charts.v22.1.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.

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