@Stability(value=Stable)
public static interface CfnTheme.ThemeConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
This configuration contains all of the display properties for a theme.
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.*;
ThemeConfigurationProperty themeConfigurationProperty = ThemeConfigurationProperty.builder()
.dataColorPalette(DataColorPaletteProperty.builder()
.colors(List.of("colors"))
.emptyFillColor("emptyFillColor")
.minMaxGradient(List.of("minMaxGradient"))
.build())
.sheet(SheetStyleProperty.builder()
.tile(TileStyleProperty.builder()
.border(BorderStyleProperty.builder()
.show(false)
.build())
.build())
.tileLayout(TileLayoutStyleProperty.builder()
.gutter(GutterStyleProperty.builder()
.show(false)
.build())
.margin(MarginStyleProperty.builder()
.show(false)
.build())
.build())
.build())
.typography(TypographyProperty.builder()
.fontFamilies(List.of(FontProperty.builder()
.fontFamily("fontFamily")
.build()))
.build())
.uiColorPalette(UIColorPaletteProperty.builder()
.accent("accent")
.accentForeground("accentForeground")
.danger("danger")
.dangerForeground("dangerForeground")
.dimension("dimension")
.dimensionForeground("dimensionForeground")
.measure("measure")
.measureForeground("measureForeground")
.primaryBackground("primaryBackground")
.primaryForeground("primaryForeground")
.secondaryBackground("secondaryBackground")
.secondaryForeground("secondaryForeground")
.success("success")
.successForeground("successForeground")
.warning("warning")
.warningForeground("warningForeground")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnTheme.ThemeConfigurationProperty.Builder
A builder for
CfnTheme.ThemeConfigurationProperty |
static class |
CfnTheme.ThemeConfigurationProperty.Jsii$Proxy
An implementation for
CfnTheme.ThemeConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnTheme.ThemeConfigurationProperty.Builder |
builder() |
default Object |
getDataColorPalette()
Color properties that apply to chart data colors.
|
default Object |
getSheet()
Display options related to sheets.
|
default Object |
getTypography()
`CfnTheme.ThemeConfigurationProperty.Typography`.
|
default Object |
getUiColorPalette()
Color properties that apply to the UI and to charts, excluding the colors that apply to data.
|
@Stability(value=Stable) @Nullable default Object getDataColorPalette()
@Stability(value=Stable) @Nullable default Object getSheet()
@Stability(value=Stable) @Nullable default Object getTypography()
@Stability(value=Stable) @Nullable default Object getUiColorPalette()
@Stability(value=Stable) static CfnTheme.ThemeConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.