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

PivotGridDataSourceOptions.AutoBindingSettingsEnabled Property

Specifies whether or not the chart’s data binding is automatically adjusted during the creation of a Pivot Chart.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v18.2.dll

Declaration

[TypeConverter(typeof(BooleanTypeConverter))]
[XtraSerializableProperty]
public bool AutoBindingSettingsEnabled { get; set; }

Property Value

Type Description
Boolean

true, to automatically adjust the chart’s binding settings; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to AutoBindingSettingsEnabled
WinForms Controls ChartControl
.PivotGridDataSourceOptions.AutoBindingSettingsEnabled
ASP.NET Controls and MVC Extensions ChartControlSettings
.PivotGridDataSourceOptions.AutoBindingSettingsEnabled
MVCxChartControl
.PivotGridDataSourceOptions.AutoBindingSettingsEnabled
WebChartControl
.PivotGridDataSourceOptions.AutoBindingSettingsEnabled
Reporting XRChart
.PivotGridDataSourceOptions.AutoBindingSettingsEnabled

Remarks

Use the AutoBindingSettingsEnabled and PivotGridDataSourceOptions.AutoLayoutSettingsEnabled properties to adjust your chart to the associated PivotGridControl automatically.

To access the PivotGridDataSourceOptions object, use the ChartControl.PivotGridDataSourceOptions (ChartControlSettings.PivotGridDataSourceOptions) property.

When the AutoBindingSettingsEnabled property is turned on, the following properties are set automatically:

To manually adjust these settings, handle the ChartControl.CustomizeAutoBindingSettings event.

For more information, see Pivot Charting (Integration with a Pivot Grid Control).

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the AutoBindingSettingsEnabled 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.

See Also