interface VisualPaletteProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.VisualPaletteProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_VisualPaletteProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.VisualPaletteProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.VisualPaletteProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » VisualPaletteProperty |
The visual display options for the visual palette.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const visualPaletteProperty: quicksight_mixins.CfnAnalysisPropsMixin.VisualPaletteProperty = {
chartColor: 'chartColor',
colorMap: [{
color: 'color',
element: {
dataPathType: {
pivotTableDataPathType: 'pivotTableDataPathType',
},
fieldId: 'fieldId',
fieldValue: 'fieldValue',
},
timeGranularity: 'timeGranularity',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| chart | string | The chart color options for the visual palette. |
| color | IResolvable | (IResolvable | Data)[] | The color map options for the visual palette. |
chartColor?
Type:
string
(optional)
The chart color options for the visual palette.
colorMap?
Type:
IResolvable | (IResolvable | Data)[]
(optional)
The color map options for the visual palette.

.NET
Go
Java
Python
TypeScript