BarPlotData

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

plotType

: Defines the type of plot/graph

groupBarList

: Data related to the bar point.

barStyle

: Styling related to the bars.

Constructors

Link copied to clipboard
constructor(plotType: PlotType = PlotType.Bar, groupBarList: List<GroupBar>, groupingSize: Int = groupBarList.firstOrNull()?.barList?.size ?: 1, barColorPaletteList: List<Color> = listOf(), barStyle: BarStyle = BarStyle())

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override val plotType: PlotType