PivotGridOptionsChartDataSourceBase.DataProvidePriority Property
Gets or sets whether the pivot grid should pass columns or rows to a bound chart control when it is impossible to find the lowest-level data.
Namespace: DevExpress.XtraPivotGrid.Data
Assembly: DevExpress.PivotGrid.v24.2.Core.dll
NuGet Packages: DevExpress.PivotGrid.Core, DevExpress.Win.Navigation
#Declaration
[DefaultValue(PivotChartDataProvidePriority.Rows)]
public virtual PivotChartDataProvidePriority DataProvidePriority { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Pivot |
Rows | A Pivot |
Available values:
Name | Description |
---|---|
Columns | Columns are passed to the chart when Pivot |
Rows | Rows are passed to the chart when Pivot |
#Remarks
The DataProvidePriority property is in effect when the PivotGridOptionsChartDataSourceBase.DataProvideMode property is set to PivotChartDataProvideMode.ProvideLastLevelData, but the pivot grid is unable to define which values have the lowest level.
For instance, consider the following pivot grid.
The selection contains cells from three detail levels: (Product Name, Grand Total), (Grand Total, Order Year), (Grand Total, Grand Total). In this instance, PivotGridControl cannot define which of the two former levels is the lowest.
The DataProvidePriority property allows you to specify whether to chart a column (the (Product Name, Grand Total) level) or row (the (Grand Total, Order Year) level).