RadarChartColors

data class RadarChartColors(val lineColor: List<Color>, val dotColor: List<Color>, val fillColor: List<Color> = lineColor.map { it.copy(alpha = 0.5F) })

Represents the colors used in a radar chart.

Constructors

Link copied to clipboard
constructor(lineColor: List<Color>, dotColor: List<Color>, fillColor: List<Color> = lineColor.map { it.copy(alpha = 0.5F) })

Properties

Link copied to clipboard

The colors of the dots in the chart.

Link copied to clipboard

The fill color of the polygon in the chart.

Link copied to clipboard

The colors of the lines in the chart.