interface ThemeConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTheme.ThemeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTheme_ThemeConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTheme.ThemeConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnTheme.ThemeConfigurationProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnTheme » ThemeConfigurationProperty |
The theme configuration.
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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const themeConfigurationProperty: quicksight.CfnTheme.ThemeConfigurationProperty = {
dataColorPalette: {
colors: ['colors'],
emptyFillColor: 'emptyFillColor',
minMaxGradient: ['minMaxGradient'],
},
sheet: {
tile: {
border: {
show: false,
},
},
tileLayout: {
gutter: {
show: false,
},
margin: {
show: false,
},
},
},
typography: {
fontFamilies: [{
fontFamily: 'fontFamily',
}],
},
uiColorPalette: {
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',
},
};
Properties
Name | Type | Description |
---|---|---|
data | IResolvable | Data | Color properties that apply to chart data colors. |
sheet? | IResolvable | Sheet | Display options related to sheets. |
typography? | IResolvable | Typography | Determines the typography options. |
ui | IResolvable | UIColor | Color properties that apply to the UI and to charts, excluding the colors that apply to data. |
dataColorPalette?
Type:
IResolvable
|
Data
(optional)
Color properties that apply to chart data colors.
sheet?
Type:
IResolvable
|
Sheet
(optional)
Display options related to sheets.
typography?
Type:
IResolvable
|
Typography
(optional)
Determines the typography options.
uiColorPalette?
Type:
IResolvable
|
UIColor
(optional)
Color properties that apply to the UI and to charts, excluding the colors that apply to data.