corelibraries-devexpress-dot-xtracharts-dot-totallabel-61001d63.md
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
[XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)]
public bool Visible { get; set; }
<XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)>
Public Property Visible As Boolean
| Type | Description |
|---|---|
| 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
seriesTemplate.View = stackedBarSeriesView;
stackedBarSeriesView.Pane.StackedBarTotalLabel.Visible = true;
winforms-charts-sort-stacked-bars-by-total-values-with-qualitativescalecomparer/VB/Form1.vb#L23
seriesTemplate.View = stackedBarSeriesView
stackedBarSeriesView.Pane.StackedBarTotalLabel.Visible = True
AddHandler chartControl1.BoundDataChanged, AddressOf ChartControl1_BoundDataChanged
See Also