ThemeDataColorPalette

data class ThemeDataColorPalette(val colors: List<String>? = null, val emptyFillColor: String? = null, val minMaxGradient: List<String>? = null)

The theme colors that are used for data colors in charts. The colors description is a hexadecimal color code that consists of six alphanumerical characters, prefixed with #, for example #37BFF5.

Constructors

Link copied to clipboard
constructor(colors: List<String>? = null, emptyFillColor: String? = null, minMaxGradient: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val colors: List<String>? = null

The hexadecimal codes for the colors.

Link copied to clipboard
val emptyFillColor: String? = null

The hexadecimal code of a color that applies to charts where a lack of data is highlighted.

Link copied to clipboard
val minMaxGradient: List<String>? = null

The minimum and maximum hexadecimal codes that describe a color gradient.