interface DataColorProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.DataColorProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_DataColorProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.DataColorProperty | 
|  Python | aws_cdk.aws_quicksight.CfnDashboard.DataColorProperty | 
|  TypeScript | aws-cdk-lib»aws_quicksight»CfnDashboard»DataColorProperty | 
Determines the color that is applied to a particular data value.
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 dataColorProperty: quicksight.CfnDashboard.DataColorProperty = {
  color: 'color',
  dataValue: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| color? | string | The color that is applied to the data value. | 
| data | number | The data value that the color is applied to. | 
color?
Type:
string
(optional)
The color that is applied to the data value.
dataValue?
Type:
number
(optional)
The data value that the color is applied to.
