interface GaugeChartArcConditionalFormattingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.GaugeChartArcConditionalFormattingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_GaugeChartArcConditionalFormattingProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.GaugeChartArcConditionalFormattingProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.GaugeChartArcConditionalFormattingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » GaugeChartArcConditionalFormattingProperty |
The options that determine the presentation of the arc 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 gaugeChartArcConditionalFormattingProperty: quicksight_mixins.CfnAnalysisPropsMixin.GaugeChartArcConditionalFormattingProperty = {
foregroundColor: {
gradient: {
color: {
stops: [{
color: 'color',
dataValue: 123,
gradientOffset: 123,
}],
},
expression: 'expression',
},
solid: {
color: 'color',
expression: 'expression',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| foreground | IResolvable | Conditional | The conditional formatting of the arc foreground color. |
foregroundColor?
Type:
IResolvable | Conditional
(optional)
The conditional formatting of the arc foreground color.

.NET
Go
Java
Python
TypeScript