Back to Devexpress

TotalLabel.Visible Property

corelibraries-devexpress-dot-xtracharts-dot-totallabel-61001d63.md

latest2.5 KB
Original Source

TotalLabel.Visible Property

Gets or sets the value indicating whether total labels should be visible.

Namespace : DevExpress.XtraCharts

Assembly : DevExpress.XtraCharts.v25.2.dll

NuGet Package : DevExpress.Charts

Declaration

csharp
[XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)]
public bool Visible { get; set; }
vb
<XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)>
Public Property Visible As Boolean

Property Value

TypeDescription
Boolean

true to display total labels; otherwise false.

|

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Visible property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

winforms-charts-sort-stacked-bars-by-total-values-with-qualitativescalecomparer/CS/Form1.cs#L22

csharp
seriesTemplate.View = stackedBarSeriesView;
stackedBarSeriesView.Pane.StackedBarTotalLabel.Visible = true;

winforms-charts-sort-stacked-bars-by-total-values-with-qualitativescalecomparer/VB/Form1.vb#L23

vb
seriesTemplate.View = stackedBarSeriesView
stackedBarSeriesView.Pane.StackedBarTotalLabel.Visible = True
AddHandler chartControl1.BoundDataChanged, AddressOf ChartControl1_BoundDataChanged

See Also

TotalLabel Class

TotalLabel Members

DevExpress.XtraCharts Namespace