PieData

data class PieData(val yValue: Float, val xValue: Any, val color: Color) : ChartData

Represents a data point in a pie chart.

Constructors

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

Properties

Link copied to clipboard
open override val chartString: String
Link copied to clipboard

The color associated with the data point.

Link copied to clipboard
open override val xValue: Any

The label or identifier of the data point.

Link copied to clipboard
open override val yValue: Float

The value of the data point.