aws-cdk-lib.aws_quicksight.CfnTheme.DataColorPaletteProperty

interface DataColorPaletteProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnTheme.DataColorPaletteProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTheme_DataColorPaletteProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnTheme.DataColorPaletteProperty
Pythonaws_cdk.aws_quicksight.CfnTheme.DataColorPaletteProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnTheme » DataColorPaletteProperty

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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const dataColorPaletteProperty: quicksight.CfnTheme.DataColorPaletteProperty = {
  colors: ['colors'],
  emptyFillColor: 'emptyFillColor',
  minMaxGradient: ['minMaxGradient'],
};

Properties

NameTypeDescription
colors?string[]The hexadecimal codes for the colors.
emptyFillColor?stringThe hexadecimal code of a color that applies to charts where a lack of data is highlighted.
minMaxGradient?string[]The minimum and maximum hexadecimal codes that describe a color gradient.

colors?

Type: string[] (optional)

The hexadecimal codes for the colors.


emptyFillColor?

Type: string (optional)

The hexadecimal code of a color that applies to charts where a lack of data is highlighted.


minMaxGradient?

Type: string[] (optional)

The minimum and maximum hexadecimal codes that describe a color gradient.