Point Chart Color Config
data class PointChartColorConfig(val axisColor: ChartColor, val gridLineColor: ChartColor, val circleColor: ChartColor, val strokeColor: ChartColor = ChartColor.Gradient(
circleColor.value.fastMap {
it.copy(alpha = 0.5f)
}
), val selectionBarColor: ChartColor)
Data class representing the color configuration for a point chart.
Constructors
Link copied to clipboard
constructor(axisColor: ChartColor, gridLineColor: ChartColor, circleColor: ChartColor, strokeColor: ChartColor = ChartColor.Gradient(
circleColor.value.fastMap {
it.copy(alpha = 0.5f)
}
), selectionBarColor: ChartColor)
Properties
Link copied to clipboard
The color of the axis lines.
Link copied to clipboard
The color of the circles in the chart.
Link copied to clipboard
The color of the grid lines.
Link copied to clipboard
The color of the selection bar.
Link copied to clipboard
The stroke color of the circles, with a default gradient based on the circle color.