Interface CfnTemplate.DonutOptionsProperty

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

@Stability(Stable) public static interface CfnTemplate.DonutOptionsProperty extends software.amazon.jsii.JsiiSerializable
The options for configuring a donut chart or pie chart.

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.*;
 DonutOptionsProperty donutOptionsProperty = DonutOptionsProperty.builder()
         .arcOptions(ArcOptionsProperty.builder()
                 .arcThickness("arcThickness")
                 .build())
         .donutCenterOptions(DonutCenterOptionsProperty.builder()
                 .labelVisibility("labelVisibility")
                 .build())
         .build();
 

See Also: