Interface CfnTemplate.GaugeChartArcConditionalFormattingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.GaugeChartArcConditionalFormattingProperty.Jsii$Proxy
- Enclosing class:
- CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.GaugeChartArcConditionalFormattingProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.quicksight.*; GaugeChartArcConditionalFormattingProperty gaugeChartArcConditionalFormattingProperty = GaugeChartArcConditionalFormattingProperty.builder() .foregroundColor(ConditionalFormattingColorProperty.builder() .gradient(ConditionalFormattingGradientColorProperty.builder() .color(GradientColorProperty.builder() .stops(List.of(GradientStopProperty.builder() .gradientOffset(123) // the properties below are optional .color("color") .dataValue(123) .build())) .build()) .expression("expression") .build()) .solid(ConditionalFormattingSolidColorProperty.builder() .expression("expression") // the properties below are optional .color("color") .build()) .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTemplate.GaugeChartArcConditionalFormattingProperty
static final class
An implementation forCfnTemplate.GaugeChartArcConditionalFormattingProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getForegroundColor
The conditional formatting of the arc foreground color. -
builder
-