Interface CfnAnalysis.BoxPlotOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.BoxPlotOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.BoxPlotOptionsPropertystatic final classAn implementation forCfnAnalysis.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.- See Also:
-
getOutlierVisibility
Determines the visibility of the outlier in a box plot.- See Also:
-
getStyleOptions
The style options of the box plot.Returns union: either
IResolvableorCfnAnalysis.BoxPlotStyleOptionsProperty- See Also:
-
builder
-