GroupedBarChart

fun GroupedBarChart(groupBarDataCollection: ComposeList<GroupBarData>, modifier: Modifier = Modifier, padding: Dp = 16.dp, barWidthRatio: Float = 0.8f, axisConfig: AxisConfig = ChartDefaults.axisConfigDefaults(), textLabelTextConfig: ChartyLabelTextConfig = ChartDefaults.defaultTextLabelConfig())

Composable function that renders a grouped bar chart.

Parameters

groupBarDataCollection

The collection of group bar chart data.

modifier

The modifier for the chart.

padding

The padding around the chart. Defaults to 16.dp.

barWidthRatio

The ratio of the bar width to the available space. Defaults to 0.8f.

axisConfig

The configuration for the chart's axis. Defaults to ChartDefaults.axisConfigDefaults.

textLabelTextConfig

The configuration for the text labels in the chart. Defaults to ChartDefaults.defaultTextLabelConfig.