Skip to main content

PieSeriesView.TitlePosition Property

Specifies the title position of the pie series.

Namespace: DevExpress.WinUI.Charts

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

NuGet Package: DevExpress.WinUI

Declaration

[DP(SeriesTitlePosition.Top, Handler = "InvalidateLayout")]
public SeriesTitlePosition TitlePosition { get; set; }

Property Value

Type Description
SeriesTitlePosition

A value that identifies a title position.

Available values:

Name Description
Top

A title is located on the top of a series.

Bottom

A title is located on the bottom of a series.

Remarks

The following markup specifies the title position:

<Charts:PieSeries>
    <Charts:PieSeries.View>
        <Charts:PieSeriesView Title="Sales Volume by Products"
                              TitlePosition="Bottom"/>
    </Charts:PieSeries.View>
</Charts:PieSeries>
See Also