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

PivotGridOptionsChartDataSourceBase.AutoTransposeChart Property

Gets or sets whether a bound chart control should be transposed if the number of series exceeds the number of argument values.

Namespace: DevExpress.XtraPivotGrid.Data

Assembly: DevExpress.PivotGrid.v19.1.Core.dll

Declaration

[DefaultValue(false)]
[XtraSerializableProperty]
public bool AutoTransposeChart { get; set; }

Property Value

Type Default Description
Boolean **false**

true to transpose a bound chart control if the number of series exceeds the number of argument values; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to AutoTransposeChart
WinForms Controls PivotGridControl
.OptionsChartDataSource.AutoTransposeChart
Reporting XRPivotGrid
.OptionsChartDataSource.AutoTransposeChart
ASP.NET Web Forms Controls ASPxPivotGrid
.OptionsChartDataSource.AutoTransposeChart
MVCxPivotGrid
.OptionsChartDataSource.AutoTransposeChart
PivotGridSettings
.OptionsChartDataSource.AutoTransposeChart

Remarks

Set the AutoTransposeChart property to true to transpose the chart by changing series into arguments and vice versa, depending on the current selection. In this mode, the number of series never exceeds the number of arguments.

When the AutoTransposeChart property is set to false, you can use the PivotGridOptionsChartDataSourceBase.ProvideDataByColumns property to manually transpose a bound chart control.

See Also