AreaData

data class AreaData(val xValue: Any, val points: List<Float>, val color: Color)

Data class representing an area on the AreaChart.

Parameters

xValue

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

points

The list of y-values that define the area's shape. Each y-value corresponds to a specific data point.

color

The color of the area.

Constructors

Link copied to clipboard
constructor(xValue: Any, points: List<Float>, color: Color)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val xValue: Any