interface DataPathColorProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.DataPathColorProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_DataPathColorProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.DataPathColorProperty | 
  Python | aws_cdk.aws_quicksight.CfnDashboard.DataPathColorProperty | 
  TypeScript  | aws-cdk-lib » aws_quicksight » CfnDashboard » DataPathColorProperty | 
The color map that determines the color options for a particular element.
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 dataPathColorProperty: quicksight.CfnDashboard.DataPathColorProperty = {
  color: 'color',
  element: {
    dataPathType: {
      pivotTableDataPathType: 'pivotTableDataPathType',
    },
    fieldId: 'fieldId',
    fieldValue: 'fieldValue',
  },
  // the properties below are optional
  timeGranularity: 'timeGranularity',
};
Properties
| Name | Type | Description | 
|---|---|---|
| color | string | The color that needs to be applied to the element. | 
| element | IResolvable | Data | The element that the color needs to be applied to. | 
| time | string | The time granularity of the field that the color needs to be applied to. | 
color
Type:
string
The color that needs to be applied to the element.
element
Type:
IResolvable | Data
The element that the color needs to be applied to.
timeGranularity?
Type:
string
(optional)
The time granularity of the field that the color needs to be applied to.

 .NET
 Go
 Java
 Python
 TypeScript