PieSeriesView.TotalLabel Property
Returns settings that configure the Pie series’ total label.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v24.1.dll
NuGet Package: DevExpress.Charts
Declaration
[PersistenceMode(PersistenceMode.InnerProperty)]
[XtraChartsLocalizableCategory(XtraChartsCategory.Elements)]
[XtraSerializableProperty(XtraSerializationVisibility.Content)]
public PieTotalLabel TotalLabel { get; }
Property Value
Type | Description |
---|---|
PieTotalLabel | The Pie series’ total label settings storage. |
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";
See Also