Interface CfnDashboard.BoxPlotOptionsProperty

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

@Stability(Stable) public static interface CfnDashboard.BoxPlotOptionsProperty extends software.amazon.jsii.JsiiSerializable
The options of a box plot visual.

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.*;
 BoxPlotOptionsProperty boxPlotOptionsProperty = BoxPlotOptionsProperty.builder()
         .allDataPointsVisibility("allDataPointsVisibility")
         .outlierVisibility("outlierVisibility")
         .styleOptions(BoxPlotStyleOptionsProperty.builder()
                 .fillStyle("fillStyle")
                 .build())
         .build();
 

See Also: