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();
 - 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.BoxPlotOptionsPropertystatic final classAn implementation forCfnDashboard.BoxPlotOptionsProperty - 
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getAllDataPointsVisibility
Determines the visibility of all data points of the box plot. - 
getOutlierVisibility
Determines the visibility of the outlier in a box plot. - 
getStyleOptions
The style options of the box plot. - 
builder
 
 -