Enum ChartWizardSeriesType
Specifies the various series types available for rendering data within the chart in the SfChartWizard component.
Namespace: Syncfusion.Blazor.ChartWizard
Assembly: Syncfusion.Blazor.dll
Syntax
public enum ChartWizardSeriesType
Remarks
This enumeration determines the visual representation of data points in the chart.
- Line - Renders the chart using line series.
- StackingLine - Renders the chart using StackingLine series, where data points are stacked cumulatively.
- StackingLine100 - Renders the chart using 100% StackingLine series, where data points are stacked cumulatively to represent a percentage of the total.
- Column - Renders the chart using Column series, with vertical bars representing data.
- StackingColumn - Renders the chart using StackingColumn series, where columns are stacked cumulatively.
- StackingColumn100 - Renders the chart using 100% StackingColumn series, where columns are stacked cumulatively to represent a percentage of the total.
- Bar - Renders the chart using Bar series, with horizontal bars representing data.
- StackingBar - Renders the chart using StackingBar series, where bars are stacked cumulatively.
- StackingBar100 - Renders the chart using 100% StackingBar series, where bars are stacked cumulatively to represent a percentage of the total.
- Area - Renders the chart using Area series, with the area beneath the line filled.
- StackingArea - Renders the chart using StackingArea series, where areas are stacked cumulatively.
- StackingArea100 - Renders the chart using 100% StackingArea series, where areas are stacked cumulatively to represent a percentage of the total.
- Scatter - Renders the chart using Scatter series, with individual data points plotted as markers.
- Pie - Renders the chart using Pie chart, representing proportions of a whole.
Fields
| Name | Description |
|---|---|
| Area | Renders the chart using Area series, with the area beneath the line filled. |
| Bar | Renders the chart using Bar series, with horizontal bars representing data. |
| Column | Renders the chart using Column series, with vertical bars representing data. |
| Line | Renders the chart using line series. |
| Pie | Renders the chart using Pie chart, representing proportions of a whole. |
| Scatter | Renders the chart using Scatter series, with individual data points plotted as markers. |
| StackingArea | Renders the chart using StackingArea series, where areas are stacked cumulatively. |
| StackingArea100 | Renders the chart using 100% StackingArea series, where areas are stacked cumulatively to represent a percentage of the total. |
| StackingBar | Renders the chart using StackingBar series, where bars are stacked cumulatively. |
| StackingBar100 | Renders the chart using 100% StackingBar series, where bars are stacked cumulatively to represent a percentage of the total. |
| StackingColumn | Renders the chart using StackingColumn series, where columns are stacked cumulatively. |
| StackingColumn100 | Renders the chart using 100% StackingColumn series, where columns are stacked cumulatively to represent a percentage of the total. |
| StackingLine | Renders the chart using StackingLine series, where data points are stacked cumulatively. |
| StackingLine100 | Renders the chart using 100% StackingLine series, where data points are stacked cumulatively to represent a percentage of the total. |