Area Series
- 2 minutes to read
Area series connect numeric data points by different types of line segments and fill the area between the line and X-axis/other series.
The following types of Point and Line series are available.
- Area
- Stacked Area
- Full-Stacked Area
- Step Area
- Spline Area
- Stacked Spline Area
- Full-Stacked Spline Area
Area
Area series connect numeric data points by straight line segments and fill the area between the line and X-axis.
To specify the type of series as Area in code, set the SimpleSeries.SeriesType property to SimpleSeriesType.Area.
Stacked Area
Stacked Area series can be used to show the trend of the contribution for each value. Stacked Area series connect numeric data points by straight line segments and fill the area between the line and previous series.
To specify the type of series as Stacked Area in code, set the SimpleSeries.SeriesType property to SimpleSeriesType.StackedArea.
Full-Stacked Area
Full-Stacked Area series are useful to show the trend of the percentage for each value.
To specify the type of series as Full-Stacked Area in code, set the SimpleSeries.SeriesType property to SimpleSeriesType.FullStackedArea.
Step Area
Step Area series use vertical and horizontal lines to connect the numeric data points forming a step-like progression and fill the area between the line and X-axis.
To specify the type of series as Step Area in code, set the SimpleSeries.SeriesType property to SimpleSeriesType.StepArea.
Spline Area
Spline Area series plot a fitted curve through each numeric data point and fill the area between the line and X-axis.
To specify the type of series as Spline Area in code, set the SimpleSeries.SeriesType property to SimpleSeriesType.SplineArea.
Stacked Spline Area
Stacked Area series can be used to show the trend of the contribution for each value. Stacked Area series plot a fitted curve through each numeric data point, and fill the area between the line and previous series.
To specify the type of series as Stacked Spline Area in code, set the SimpleSeries.SeriesType property to SimpleSeriesType.StackedSplineArea.
Full-Stacked Spline Area
Full-Stacked Spline Area series are useful to show the trend of the percentage for each value.
To specify the type of series as Full-Stacked Spline Area in code, set the SimpleSeries.SeriesType property to SimpleSeriesType.FullStackedSplineArea.