LegendBase.Title Property
In This Article
Gets or sets the legend title settings.
Namespace: DevExpress.Xpf.Charts
Assembly: DevExpress.Xpf.Charts.v24.2.dll
NuGet Package: DevExpress.Wpf.Charts
#Declaration
public LegendTitle Title { get; set; }
#Property Value
Type | Description |
---|---|
Legend |
A Legend |
#Example
To display the legend title, assign a newly created LegendTitle object to the LegendBase.Title
property. Then, specify the title’s TitleBase.Content property.
<dxc:Legend>
<dxc:Legend.Title>
<dxc:LegendTitle Content="Area of Countries"/>
</dxc:Legend.Title>
</dxc:Legend>
See Also