ThemeDataColorPaletteArgs

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

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: Output<List<String>>? = null, emptyFillColor: Output<String>? = null, minMaxGradient: Output<List<String>>? = null)

Properties

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

The hexadecimal codes for the colors.

Link copied to clipboard
val emptyFillColor: Output<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: Output<List<String>>? = null

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

Functions

Link copied to clipboard
open override fun toJava(): ThemeDataColorPaletteArgs