Interface CfnAnalysisPropsMixin.GaugeChartArcConditionalFormattingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysisPropsMixin.GaugeChartArcConditionalFormattingProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysisPropsMixin
@Stability(Stable)
public static interface CfnAnalysisPropsMixin.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.cfnpropertymixins.services.quicksight.*;
GaugeChartArcConditionalFormattingProperty gaugeChartArcConditionalFormattingProperty = GaugeChartArcConditionalFormattingProperty.builder()
.foregroundColor(ConditionalFormattingColorProperty.builder()
.gradient(ConditionalFormattingGradientColorProperty.builder()
.color(GradientColorProperty.builder()
.stops(List.of(GradientStopProperty.builder()
.color("color")
.dataValue(123)
.gradientOffset(123)
.build()))
.build())
.expression("expression")
.build())
.solid(ConditionalFormattingSolidColorProperty.builder()
.color("color")
.expression("expression")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnAnalysisPropsMixin.GaugeChartArcConditionalFormattingProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getForegroundColor
The conditional formatting of the arc foreground color.Returns union: either
IResolvableorCfnAnalysisPropsMixin.ConditionalFormattingColorProperty- See Also:
-
builder
@Stability(Stable) static CfnAnalysisPropsMixin.GaugeChartArcConditionalFormattingProperty.Builder builder()
-