LineData

data class LineData(val yValue: Float, val xValue: Any)

Data class representing a data point in a line chart.

Constructors

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

Properties

Link copied to clipboard
val xValue: Any

The x-axis value of the data point, which can be of any type.

Link copied to clipboard

The y-axis value of the data point.