Skip to main content

ChartWizard.PresentationGroup Property

Gets the Presentation group from the Chart Wizard‘s group collection.

Namespace: DevExpress.XtraCharts.Wizard

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

NuGet Package: DevExpress.Win.Charts

Declaration

public WizardGroup PresentationGroup { get; }

Property Value

Type Description
WizardGroup

A WizardGroup object that represents the Construction group of Wizard pages.

Remarks

There are different ways to get access to a wizard’s pages. One of them is to obtain a required group from the ChartWizard.Groups array, and then obtain a required page from the WizardGroup.Pages array. However, this approach appears to be inflexible, as it involves a group’s and a page’s 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. ChartWizard.ChartTypePage
  2. ChartWizard.AppearancePage
  3. ChartWizard.SeriesPage
  4. ChartWizard.DataPage

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.

See Also