Skip to main content
A newer version of this page is available. .

FilterableDashboardItemInteractivityOptions.AllowMasterFilterWithIntermediateAggregates Property

Gets or sets whether the use of the Aggr function for filtering is allowed.

Namespace: DevExpress.DashboardCommon

Assembly: DevExpress.Dashboard.v20.2.Core.dll

NuGet Packages: DevExpress.Dashboard.Core, DevExpress.WindowsDesktop.Dashboard.Core

Declaration

[Browsable(false)]
public static bool AllowMasterFilterWithIntermediateAggregates { get; set; }

Property Value

Type
Boolean

Property Paths

You can access this nested property as listed below:

Show 25 property paths
Object Type Path to AllowMasterFilterWithIntermediateAggregates
BoundImageDashboardItem
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
BubbleMapDashboardItem
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
CardDashboardItem
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
ChartDashboardItem
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
ChartDashboardItemBase
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
ChoroplethMapDashboardItem
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
ComboBoxDashboardItem
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
CustomDashboardItem
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
DashboardItemGroup
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
DashboardTabPage
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
GaugeDashboardItem
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
GeoPointMapDashboardItem
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
GeoPointMapDashboardItemBase
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
GridDashboardItem
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
KpiDashboardItem<TKpiElement>
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
ListBoxDashboardItem
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
MapDashboardItem
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
PieDashboardItem
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
PieMapDashboardItem
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
PivotDashboardItem
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
RangeFilterDashboardItem
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
ScatterChartDashboardItem
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
TextBoxDashboardItem
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
TreemapDashboardItem
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates
TreeViewDashboardItem
.InteractivityOptions .AllowMasterFilterWithIntermediateAggregates

Remarks

When a master filter is set by the Aggr dimension, the “Master filtering cannot be applied by values of the dimension created based on the calculated field with the Aggr function” exception occurs. It is intended to prevent incorrect results in some cases. This exception is thrown starting from version 17.2.6.

To revert to the previous behavior and use the Aggr function for filtering, set the static AllowMasterFilterWithIntermediateAggregates property to true on the application start, as in the following code snippet:

FilterableDashboardItemInteractivityOptions.AllowMasterFilterWithIntermediateAggregates = true;
See Also