interface WaterfallChartGroupColorConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.WaterfallChartGroupColorConfigurationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_WaterfallChartGroupColorConfigurationProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.WaterfallChartGroupColorConfigurationProperty | 
|  Python | aws_cdk.aws_quicksight.CfnAnalysis.WaterfallChartGroupColorConfigurationProperty | 
|  TypeScript | aws-cdk-lib»aws_quicksight»CfnAnalysis»WaterfallChartGroupColorConfigurationProperty | 
The color configuration for individual groups within a waterfall visual.
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 waterfallChartGroupColorConfigurationProperty: quicksight.CfnAnalysis.WaterfallChartGroupColorConfigurationProperty = {
  negativeBarColor: 'negativeBarColor',
  positiveBarColor: 'positiveBarColor',
  totalBarColor: 'totalBarColor',
};
Properties
| Name | Type | Description | 
|---|---|---|
| negative | string | Defines the color for the negative bars of a waterfall chart. | 
| positive | string | Defines the color for the positive bars of a waterfall chart. | 
| total | string | Defines the color for the total bars of a waterfall chart. | 
negativeBarColor?
Type:
string
(optional)
Defines the color for the negative bars of a waterfall chart.
positiveBarColor?
Type:
string
(optional)
Defines the color for the positive bars of a waterfall chart.
totalBarColor?
Type:
string
(optional)
Defines the color for the total bars of a waterfall chart.
