interface GaugeChartColorConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.GaugeChartColorConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_GaugeChartColorConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.GaugeChartColorConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.GaugeChartColorConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » GaugeChartColorConfigurationProperty |
The color configuration of a GaugeChartVisual .
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 gaugeChartColorConfigurationProperty: quicksight_mixins.CfnAnalysisPropsMixin.GaugeChartColorConfigurationProperty = {
backgroundColor: 'backgroundColor',
foregroundColor: 'foregroundColor',
};
Properties
| Name | Type | Description |
|---|---|---|
| background | string | The background color configuration of a GaugeChartVisual . |
| foreground | string | The foreground color configuration of a GaugeChartVisual . |
backgroundColor?
Type:
string
(optional)
The background color configuration of a GaugeChartVisual .
foregroundColor?
Type:
string
(optional)
The foreground color configuration of a GaugeChartVisual .

.NET
Go
Java
Python
TypeScript