PieTotalLabel Class
The pie’s total labels settings storage.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v22.2.dll
NuGet Package: DevExpress.Charts
Declaration
Related API Members
The following members return PieTotalLabel objects:
Remarks
The instance of the class configures pie’s total labels’ appearance and content.
Example
Use the PieSeriesView.TotalLabel property to access settings that configure a Pie (Doughnut) series’ Total Label.
Note
A complete sample project is available at https://github.com/DevExpress-Examples/how-to-show-a-pie-series-total-label-t556267
PieTotalLabel totalLabel = ((DoughnutSeriesView)pieChart.Series["Country Areas"].View).TotalLabel;
totalLabel.Visible = true;
totalLabel.TextPattern = "Total area\n{TV:F2} km\xB2";
Inheritance
Object
ChartElement
TotalLabel
PieTotalLabel
See Also