Bar Plot Data
data class BarPlotData(val plotType: PlotType = PlotType.Bar, val groupBarList: List<GroupBar>, val groupingSize: Int = groupBarList.firstOrNull()?.barList?.size ?: 1, val barColorPaletteList: List<Color> = listOf(), val barStyle: BarStyle = BarStyle()) : PlotData
BarPlotData is a data class that holds bar graph related data and styling components
Parameters
plot Type
: Defines the type of plot/graph
group Bar List
: Data related to the bar point.
bar Style
: Styling related to the bars.