interface VisualPaletteProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.VisualPaletteProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_VisualPaletteProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnTemplate.VisualPaletteProperty | 
  Python | aws_cdk.aws_quicksight.CfnTemplate.VisualPaletteProperty | 
  TypeScript  | aws-cdk-lib » aws_quicksight » CfnTemplate » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const visualPaletteProperty: quicksight.CfnTemplate.VisualPaletteProperty = {
  chartColor: 'chartColor',
  colorMap: [{
    color: 'color',
    element: {
      dataPathType: {
        pivotTableDataPathType: 'pivotTableDataPathType',
      },
      fieldId: 'fieldId',
      fieldValue: 'fieldValue',
    },
    // the properties below are optional
    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