Stacked Area Chart Style
class StackedAreaChartStyle(val modifier: Modifier, val chartViewStyle: ChartViewStyle, val areaColor: Color, val areaColors: List<Color>, val fillAlpha: Float, val lineVisible: Boolean, val lineColor: Color, val lineColors: List<Color>, val lineWidth: Float, val bezier: Boolean, val zoomControlsVisible: Boolean, val yAxisLabelsVisible: Boolean, val yAxisLabelColor: Color, val yAxisLabelSize: TextUnit, val yAxisLabelCount: Int, val xAxisLabelsVisible: Boolean, val xAxisLabelColor: Color, val xAxisLabelSize: TextUnit, val xAxisLabelMaxCount: Int) : Style
A class that defines the style for a Stacked Area Chart.
Constructors
Link copied to clipboard
constructor(modifier: Modifier, chartViewStyle: ChartViewStyle, areaColor: Color, areaColors: List<Color>, fillAlpha: Float, lineVisible: Boolean, lineColor: Color, lineColors: List<Color>, lineWidth: Float, bezier: Boolean, zoomControlsVisible: Boolean, yAxisLabelsVisible: Boolean, yAxisLabelColor: Color, yAxisLabelSize: TextUnit, yAxisLabelCount: Int, xAxisLabelsVisible: Boolean, xAxisLabelColor: Color, xAxisLabelSize: TextUnit, xAxisLabelMaxCount: Int)
Properties
Link copied to clipboard
The explicit fill colors used for stacked areas.
Link copied to clipboard
The style to be applied to the chart container.
Link copied to clipboard
The explicit boundary line colors.
Link copied to clipboard
Whether boundary lines are shown on top of filled areas.
Link copied to clipboard
The color of X-axis labels.
Link copied to clipboard
Maximum number of X-axis labels to display.
Link copied to clipboard
The text size of X-axis labels.
Link copied to clipboard
Whether X-axis labels are shown.
Link copied to clipboard
The color of Y-axis labels.
Link copied to clipboard
Number of Y-axis labels.
Link copied to clipboard
The text size of Y-axis labels.
Link copied to clipboard
Whether Y-axis labels are shown.
Link copied to clipboard
Whether zoom controls are shown in expanded dense mode.