Skip to main content

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.v23.2.Core.dll

NuGet Packages: DevExpress.PivotGrid.Core, DevExpress.Win.Navigation

Declaration

[DefaultValue(false)]
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.

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