Interface CfnAnalysis.DonutOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.DonutOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.DonutOptionsProperty
static final class
An implementation forCfnAnalysis.DonutOptionsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArcOptions
The option for define the arc of the chart shape. Valid values are as follows:.WHOLE
- A pie chartSMALL
- A small-sized donut chartMEDIUM
- A medium-sized donut chartLARGE
- A large-sized donut chart
-
getDonutCenterOptions
The label options of the label that is displayed in the center of a donut chart.This option isn't available for pie charts.
-
builder
-