Skip to main content
All docs
V25.1
  • LegendBase.Title Property

    Gets or sets the legend title settings.

    Namespace: DevExpress.Xpf.Charts

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

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