Interface CfnTheme.DataColorPaletteProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTheme.DataColorPaletteProperty.Jsii$Proxy
Enclosing class:
CfnTheme

@Stability(Stable) public static interface CfnTheme.DataColorPaletteProperty extends software.amazon.jsii.JsiiSerializable
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.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.quicksight.*;
 DataColorPaletteProperty dataColorPaletteProperty = DataColorPaletteProperty.builder()
         .colors(List.of("colors"))
         .emptyFillColor("emptyFillColor")
         .minMaxGradient(List.of("minMaxGradient"))
         .build();