Skip to main content

ChartWizard.FilterSeriesTypes Property

Provides access to the collection used to hide the chart types available for selection within the Wizard.

Namespace: DevExpress.XtraCharts.Wizard

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

NuGet Package: DevExpress.Win.Charts

Declaration

public FilterSeriesTypesCollection FilterSeriesTypes { get; }

Property Value

Type Description
FilterSeriesTypesCollection

A FilterSeriesTypesCollection instance, representing a collection of chart types.

Remarks

Populate the FilterSeriesTypesCollection collection, returned by the FilterSeriesTypes method, with chart types that should be unavailable on the corresponding Wizard page. This page, used to select the chart series type, is indicated as WizardPageType.ChartType. The following example illustrates the use of the FilterSeriesTypes property:

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

// Create a new Wizard.
ChartWizard wiz = new ChartWizard(chartControl1);

// Exclude the Gantt and SideBySideGantt chart types from the Wizard.
wiz.FilterSeriesTypes.AddRange(new ViewType[] { ViewType.Gantt, ViewType.SideBySideGantt });

// Display the Wizard.
wiz.ShowDialog();
See Also