Skip to main content

ChartWizard.ChartTypePage Property

Provides access to the Chart Type page of the Chart Wizard.

Namespace: DevExpress.XtraCharts.Wizard

Assembly: DevExpress.XtraCharts.v23.2.Wizard.dll

NuGet Package: DevExpress.Win.Charts

Declaration

public WizardPage ChartTypePage { get; }

Property Value

Type Description
WizardPage

A WizardPage object which represents the Chart Type page.

Remarks

There are different ways to access a wizard’s pages. One of them is to obtain a required group from the ChartWizard.Groups array, and then to obtain a required page from the WizardGroup.Pages array. However, this approach appears to be inflexible, as it involves a group and page index.

If you want to get the direct access to a specific wizard group or page, use one of the following properties.

ChartWizard.ConstructionGroup

  1. ChartTypePage
  2. ChartWizard.AppearancePage
  3. ChartWizard.SeriesPage
  4. ChartWizard.DataPage

ChartWizard.PresentationGroup

  1. ChartWizard.ChartPage
  2. ChartWizard.DiagramPage
  3. ChartWizard.PanePage
  4. ChartWizard.AxisPage
  5. ChartWizard.SeriesViewPage
  6. ChartWizard.SeriesLabelsPage
  7. ChartWizard.TitlePage
  8. ChartWizard.LegendPage
  9. ChartWizard.AnnotationPage

For more information, refer to Chart Wizard.

Example

The following example demonstrates how to hide certain property tabs on a Chart Wizard‘s page at runtime. This technique is useful to prevent the end-users from modifying particular chart settings.

using DevExpress.XtraCharts.Wizard;
// ...

private void button1_Click(object sender, EventArgs e) {
    // Create a new Wizard.
    ChartWizard wizard = new ChartWizard(this.chartControl1);

    // Obtain a Data page.
    WizardDataPage page = wizard.DataPage;

    // Hide the tabs related to a data source on the Data page.
    page.HiddenPageTabs.Add(DataPageTab.AutoCreatedSeries);
    page.HiddenPageTabs.Add(DataPageTab.SeriesBinding);

    // Invoke the Wizard window.
    wizard.ShowDialog();
}
See Also