Interface CfnTemplate.GaugeChartConditionalFormattingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.GaugeChartConditionalFormattingProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.GaugeChartConditionalFormattingProperty
extends software.amazon.jsii.JsiiSerializable
The conditional formatting 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.*; GaugeChartConditionalFormattingProperty gaugeChartConditionalFormattingProperty = GaugeChartConditionalFormattingProperty.builder() .conditionalFormattingOptions(List.of(GaugeChartConditionalFormattingOptionProperty.builder() .arc(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()) .primaryValue(GaugeChartPrimaryValueConditionalFormattingProperty.builder() .icon(ConditionalFormattingIconProperty.builder() .customCondition(ConditionalFormattingCustomIconConditionProperty.builder() .expression("expression") .iconOptions(ConditionalFormattingCustomIconOptionsProperty.builder() .icon("icon") .unicodeIcon("unicodeIcon") .build()) // the properties below are optional .color("color") .displayConfiguration(ConditionalFormattingIconDisplayConfigurationProperty.builder() .iconDisplayOption("iconDisplayOption") .build()) .build()) .iconSet(ConditionalFormattingIconSetProperty.builder() .expression("expression") // the properties below are optional .iconSetType("iconSetType") .build()) .build()) .textColor(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()) .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTemplate.GaugeChartConditionalFormattingProperty
static final class
An implementation forCfnTemplate.GaugeChartConditionalFormattingProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConditionalFormattingOptions
Conditional formatting options of aGaugeChartVisual
.- See Also:
-
builder
-