Skip to main content
A newer version of this page is available. .

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

Area series connect numeric data points by straight line segments and fill the area between the line and X-axis.

AreaSeries

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.

StackedAreaSeries

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.

FullStackedAreaSeries

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.

StepAreaSeries

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.

SplineAreaSeries

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.

StackedSplineAreaSeries

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.

FullStackedSplineAreaSeries

To specify the type of series as Full-Stacked Spline Area in code, set the SimpleSeries.SeriesType property to SimpleSeriesType.FullStackedSplineArea.