LineChartColors

data class LineChartColors(val lineColor: List<Color> = emptyList(), val dotColor: List<Color> = emptyList(), val backgroundColors: List<Color> = emptyList())

Represents the colors used in a line chart.

Constructors

Link copied to clipboard
constructor(lineColor: List<Color> = emptyList(), dotColor: List<Color> = emptyList(), backgroundColors: List<Color> = emptyList())

Properties

Link copied to clipboard

The background colors of the chart.

Link copied to clipboard

The colors of the dots in the chart.

Link copied to clipboard

The colors of the lines in the chart.