dashboard-devexpress-dot-dashboardwin-dot-idashboardcontrol-daf67482.md
Gets or sets whether to calculate totals for the hidden data items.
Namespace : DevExpress.DashboardWin
Assembly : DevExpress.Dashboard.v25.2.Win.dll
NuGet Package : DevExpress.Win.Dashboard
bool CalculateHiddenTotals { get; set; }
Property CalculateHiddenTotals As Boolean
| Type | Description |
|---|---|
| Boolean |
true , to calculate hidden totals; otherwise, false.
|
The following code snippets (auto-collected from DevExpress Examples) contain references to the CalculateHiddenTotals 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.
this.dashboardControl = dashboardControl;
dashboardControl.CalculateHiddenTotals = true;
dashboardControl.CustomDashboardItemControlCreating += OnCustomDashboardItemControlCreating;
dashboard-constant-lines/CS/ConstantLineExtension.Win/ConstantLineModule.cs#L33
this.dashboardControl.DashboardItemControlUpdated += DashboardItemControlUpdated;
calculateHiddenTotalsOriginalValue = dashboardControl.CalculateHiddenTotals;
this.dashboardControl.CalculateHiddenTotals = true;
this.dashboardControl = dashboardControl;
this.dashboardControl.CalculateHiddenTotals = true;
this.dashboardControl.DashboardItemControlUpdated += DashboardItemControlUpdated;
Me.dashboardControl = dashboardControl
dashboardControl.CalculateHiddenTotals = True
AddHandler dashboardControl.CustomDashboardItemControlCreating, AddressOf OnCustomDashboardItemControlCreating
Me.dashboardControl = dashboardControl
Me.dashboardControl.CalculateHiddenTotals = True
AddHandler Me.dashboardControl.DashboardItemControlUpdated, AddressOf DashboardItemControlUpdated
See Also