interface GaugeChartArcConditionalFormattingProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.GaugeChartArcConditionalFormattingProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.GaugeChartArcConditionalFormattingProperty | 
|  Python | aws_cdk.aws_quicksight.CfnAnalysis.GaugeChartArcConditionalFormattingProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnAnalysis»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 * as quicksight from '@aws-cdk/aws-quicksight';
const gaugeChartArcConditionalFormattingProperty: quicksight.CfnAnalysis.GaugeChartArcConditionalFormattingProperty = {
  foregroundColor: {
    gradient: {
      color: {
        stops: [{
          gradientOffset: 123,
          // the properties below are optional
          color: 'color',
          dataValue: 123,
        }],
      },
      expression: 'expression',
    },
    solid: {
      expression: 'expression',
      // the properties below are optional
      color: 'color',
    },
  },
};
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.
