BubbleData

data class BubbleData(val xValue: Any, val yValue: Float, val volumeSize: Float) : ChartData

Data class representing a bubble in a bubble chart.

Parameters

xValue

The value of the bubble on the x-axis. It can be of any type (e.g., String, Int, Float, etc.).

yValue

The value of the bubble on the y-axis.

volumeSize

The size of the bubble, typically representing a third variable.

Constructors

Link copied to clipboard
constructor(xValue: Any, yValue: Float, volumeSize: Float)

Properties

Link copied to clipboard
open override val chartString: String
Link copied to clipboard
Link copied to clipboard
open override val xValue: Any
Link copied to clipboard
open override val yValue: Float