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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTheme.DataColorPaletteProperty
static final class
An implementation forCfnTheme.DataColorPaletteProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColors
The hexadecimal codes for the colors.- See Also:
-
getEmptyFillColor
The hexadecimal code of a color that applies to charts where a lack of data is highlighted.- See Also:
-
getMinMaxGradient
The minimum and maximum hexadecimal codes that describe a color gradient.- See Also:
-
builder
-