Interface CfnTemplate.ArcAxisConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTemplate.ArcAxisConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnTemplate

@Stability(Stable) public static interface CfnTemplate.ArcAxisConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The arc axis configuration 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.*;
 ArcAxisConfigurationProperty arcAxisConfigurationProperty = ArcAxisConfigurationProperty.builder()
         .range(ArcAxisDisplayRangeProperty.builder()
                 .max(123)
                 .min(123)
                 .build())
         .reserveRange(123)
         .build();
 

See Also: