Interface CfnAnalysis.GaugeChartOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.GaugeChartOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.GaugeChartOptionsProperty
extends software.amazon.jsii.JsiiSerializable
The options that determine the presentation of the
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.*; GaugeChartOptionsProperty gaugeChartOptionsProperty = GaugeChartOptionsProperty.builder() .arc(ArcConfigurationProperty.builder() .arcAngle(123) .arcThickness("arcThickness") .build()) .arcAxis(ArcAxisConfigurationProperty.builder() .range(ArcAxisDisplayRangeProperty.builder() .max(123) .min(123) .build()) .reserveRange(123) .build()) .comparison(ComparisonConfigurationProperty.builder() .comparisonFormat(ComparisonFormatConfigurationProperty.builder() .numberDisplayFormatConfiguration(NumberDisplayFormatConfigurationProperty.builder() .decimalPlacesConfiguration(DecimalPlacesConfigurationProperty.builder() .decimalPlaces(123) .build()) .negativeValueConfiguration(NegativeValueConfigurationProperty.builder() .displayMode("displayMode") .build()) .nullValueFormatConfiguration(NullValueFormatConfigurationProperty.builder() .nullString("nullString") .build()) .numberScale("numberScale") .prefix("prefix") .separatorConfiguration(NumericSeparatorConfigurationProperty.builder() .decimalSeparator("decimalSeparator") .thousandsSeparator(ThousandSeparatorOptionsProperty.builder() .symbol("symbol") .visibility("visibility") .build()) .build()) .suffix("suffix") .build()) .percentageDisplayFormatConfiguration(PercentageDisplayFormatConfigurationProperty.builder() .decimalPlacesConfiguration(DecimalPlacesConfigurationProperty.builder() .decimalPlaces(123) .build()) .negativeValueConfiguration(NegativeValueConfigurationProperty.builder() .displayMode("displayMode") .build()) .nullValueFormatConfiguration(NullValueFormatConfigurationProperty.builder() .nullString("nullString") .build()) .prefix("prefix") .separatorConfiguration(NumericSeparatorConfigurationProperty.builder() .decimalSeparator("decimalSeparator") .thousandsSeparator(ThousandSeparatorOptionsProperty.builder() .symbol("symbol") .visibility("visibility") .build()) .build()) .suffix("suffix") .build()) .build()) .comparisonMethod("comparisonMethod") .build()) .primaryValueDisplayType("primaryValueDisplayType") .primaryValueFontConfiguration(FontConfigurationProperty.builder() .fontColor("fontColor") .fontDecoration("fontDecoration") .fontSize(FontSizeProperty.builder() .relative("relative") .build()) .fontStyle("fontStyle") .fontWeight(FontWeightProperty.builder() .name("name") .build()) .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.GaugeChartOptionsProperty
static final class
An implementation forCfnAnalysis.GaugeChartOptionsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
getArc()
The arc configuration of aGaugeChartVisual
.default Object
The arc axis configuration of aGaugeChartVisual
.default Object
The comparison configuration of aGaugeChartVisual
.default String
The options that determine the primary value display type.default Object
The options that determine the primary value font configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArc
The arc configuration of aGaugeChartVisual
.- See Also:
-
getArcAxis
The arc axis configuration of aGaugeChartVisual
.- See Also:
-
getComparison
The comparison configuration of aGaugeChartVisual
.- See Also:
-
getPrimaryValueDisplayType
The options that determine the primary value display type.- See Also:
-
getPrimaryValueFontConfiguration
The options that determine the primary value font configuration.- See Also:
-
builder
-