PieTotalLabel Class
In This Article
The pie’s total labels settings storage.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v24.2.dll
NuGet Package: DevExpress.Charts
#Declaration
public class PieTotalLabel :
TotalLabel
#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.
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