Skip to main content
A newer version of this page is available. .
All docs
V21.2

LegendBase.Title Property

Gets or sets the legend title settings.

Namespace: DevExpress.Xpf.Charts

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

NuGet Package: DevExpress.Wpf.Charts

Declaration

public LegendTitle Title { get; set; }

Property Value

Type Description
LegendTitle

A LegendTitle object which provides the legend title settings.

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.

View Example

<dxc:Legend>
    <dxc:Legend.Title>
        <dxc:LegendTitle Content="Area of Countries"/>
    </dxc:Legend.Title>
</dxc:Legend>
See Also