Stack Bar Data
data class StackBarData(val label: String, val dataPoints: List<Float>, val colors: List<Color> = List(dataPoints.count()) { Color.Transparent })
Represents the data for a stack bar chart.
Parameters
label
The label associated with the data.
data Points
The list of data points for each stack.
colors
The list of colors for each stack (default is transparent for each stack).