Interface CfnTemplate.GaugeChartOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.GaugeChartOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.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()
.groupingStyle("groupingStyle")
.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()
.groupingStyle("groupingStyle")
.symbol("symbol")
.visibility("visibility")
.build())
.build())
.suffix("suffix")
.build())
.build())
.comparisonMethod("comparisonMethod")
.build())
.primaryValueDisplayType("primaryValueDisplayType")
.primaryValueFontConfiguration(FontConfigurationProperty.builder()
.fontColor("fontColor")
.fontDecoration("fontDecoration")
.fontFamily("fontFamily")
.fontSize(FontSizeProperty.builder()
.absolute("absolute")
.relative("relative")
.build())
.fontStyle("fontStyle")
.fontWeight(FontWeightProperty.builder()
.name("name")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.GaugeChartOptionsPropertystatic final classAn implementation forCfnTemplate.GaugeChartOptionsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectgetArc()The arc configuration of aGaugeChartVisual.default ObjectThe arc axis configuration of aGaugeChartVisual.default ObjectThe comparison configuration of aGaugeChartVisual.default StringThe options that determine the primary value display type.default ObjectThe 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.Returns union: either
IResolvableorCfnTemplate.ArcConfigurationProperty- See Also:
-
getArcAxis
The arc axis configuration of aGaugeChartVisual.Returns union: either
IResolvableorCfnTemplate.ArcAxisConfigurationProperty- See Also:
-
getComparison
The comparison configuration of aGaugeChartVisual.Returns union: either
IResolvableorCfnTemplate.ComparisonConfigurationProperty- See Also:
-
getPrimaryValueDisplayType
The options that determine the primary value display type.- See Also:
-
getPrimaryValueFontConfiguration
The options that determine the primary value font configuration.Returns union: either
IResolvableorCfnTemplate.FontConfigurationProperty- See Also:
-
builder
-