@Stability(value=Stable)
public static interface CfnTheme.DataColorPaletteProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnTheme.DataColorPaletteProperty.Builder
A builder for
CfnTheme.DataColorPaletteProperty |
static class |
CfnTheme.DataColorPaletteProperty.Jsii$Proxy
An implementation for
CfnTheme.DataColorPaletteProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnTheme.DataColorPaletteProperty.Builder |
builder() |
default List<String> |
getColors()
The hexadecimal codes for the colors.
|
default String |
getEmptyFillColor()
The hexadecimal code of a color that applies to charts where a lack of data is highlighted.
|
default List<String> |
getMinMaxGradient()
The minimum and maximum hexadecimal codes that describe a color gradient.
|
@Stability(value=Stable) @Nullable default List<String> getColors()
@Stability(value=Stable) @Nullable default String getEmptyFillColor()
@Stability(value=Stable) @Nullable default List<String> getMinMaxGradient()
@Stability(value=Stable) static CfnTheme.DataColorPaletteProperty.Builder builder()
Copyright © 2022. All rights reserved.