Skip to main content

PieSeriesView.Title Property

Gets or sets the title’s content.

Namespace: DevExpress.WinUI.Charts

Assembly: DevExpress.WinUI.Charts.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

[DP(null, Handler = "UpdateTitle")]
public object Title { get; set; }

Property Value

Type Description
Object

An object that specifies title content.

Remarks

The following markup uses a TextBlock object to specify the title of a pie series:

<Charts:PieSeriesView.Title>
    <TextBlock Text="Sales Volume by Products" 
               Margin="10"/>
</Charts:PieSeriesView.Title>
See Also