DesignSettings.ChartOptions Property
Enables you to customize the default behavior of an XRChart in a reporting application for WinForms.
Namespace: DevExpress.XtraReports.Configuration
Assembly: DevExpress.XtraReports.v20.2.Extensions.dll
Declaration
public ChartDesignOptions ChartOptions { get; }
Public ReadOnly Property ChartOptions As ChartDesignOptions
Property Value
Type | Description |
---|---|
ChartDesignOptions | A ChartDesignOptions object. |
Examples
This example illustrates how to make a reporting application for WinForms invoke the Chart Wizard each time a new Use Charts in Reports is added to a report.
using DevExpress.XtraReports.Configuration;
// ...
static void Main() {
DesignSettings.Default.ChartOptions.ShowWizard = true;
//...
}
See Also
Feedback