interface DataColorProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.DataColorProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.DataColorProperty | 
|  Python | aws_cdk.aws_quicksight.CfnAnalysis.DataColorProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnAnalysis»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 * as quicksight from '@aws-cdk/aws-quicksight';
const dataColorProperty: quicksight.CfnAnalysis.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.
