PointData

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

Represents data for a point in a chart.

Parameters

yValue

The y-value of the point.

xValue

The x-value of the point.

Constructors

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

Properties

Link copied to clipboard
open override val chartString: String

Returns the string representation of the chart type.

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