interface WaterfallChartGroupColorConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.WaterfallChartGroupColorConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_WaterfallChartGroupColorConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.WaterfallChartGroupColorConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.WaterfallChartGroupColorConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const waterfallChartGroupColorConfigurationProperty: quicksight_mixins.CfnDashboardPropsMixin.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.

.NET
Go
Java
Python
TypeScript