BubbleChart

fun BubbleChart(dataCollection: ChartDataCollection, modifier: Modifier = Modifier, padding: Dp = 16.dp, axisConfig: AxisConfig = ChartDefaults.axisConfigDefaults(), chartColors: CurvedLineChartColors = CurvedLineChartDefaults.defaultColor())

A composable function that displays a bubble chart based on the provided data collection.

Parameters

dataCollection

The collection of chart data representing the bubbles in the chart.

modifier

Modifier for applying styling and positioning to the chart.

padding

Padding around the chart content to create spacing.

axisConfig

Configuration for the chart axes, including color and stroke width.

chartColors

Configuration for the colors used in the bubble chart.