SimpleSeriesType Type
Lists values that specify the types of Simple series.
Declaration
export type SimpleSeriesType = "Bar" | "StackedBar" | "FullStackedBar" | "Point" | "Line" | "StackedLine" | "FullStackedLine" | "StepLine" | "Spline" | "Area" | "StackedArea" | "FullStackedArea" | "StepArea" | "SplineArea" | "StackedSplineArea" | "FullStackedSplineArea"
Members
Name | Description |
---|---|
"Bar" | Bar series can be used to compare values across categories. |
"StackedBar" | Stacked Bar series show the contribution of individual categories to the whole. |
"FullStackedBar" | Full-Stacked Bar series allow you to compare the percentage that each value contributes to a total across categories. |
"Point" | Point series visualize data as a set of individual numeric data points. |
"Line" | Line series connect numeric data points by straight line segments. |
"StackedLine" | Stacked Line series can be used to show the trend of the contribution for each value. |
"FullStackedLine" | Stacked Line series are useful for showing the trend of the percentage for each value. |
"StepLine" | Step Line series use vertical and horizontal lines to connect the numeric data points forming a step-like progression. |
"Spline" | Spline series plot a fitted curve through each numeric data point. |
"Area" | Area series connect numeric data points by straight line segments and fill the area between the line and X-axis. |
"StackedArea" | 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. |
"FullStackedArea" | Full-Stacked Area series are useful to show the trend of the percentage for each value. |
"StepArea" | 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. |
"SplineArea" | Spline Area series plot a fitted curve through each numeric data point and fill the area between the line and X-axis. |
"StackedSplineArea" | 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. |
"FullStackedSplineArea" | Full-Stacked Spline Area series are useful to show the trend of the percentage for each value. |
Remarks
Values from this type alias are used to set the SimpleSeries.seriesType property.