interface BoxPlotOptionsProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.BoxPlotOptionsProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_BoxPlotOptionsProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnTemplate.BoxPlotOptionsProperty | 
|  Python | aws_cdk.aws_quicksight.CfnTemplate.BoxPlotOptionsProperty | 
|  TypeScript | aws-cdk-lib»aws_quicksight»CfnTemplate»BoxPlotOptionsProperty | 
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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const boxPlotOptionsProperty: quicksight.CfnTemplate.BoxPlotOptionsProperty = {
  allDataPointsVisibility: 'allDataPointsVisibility',
  outlierVisibility: 'outlierVisibility',
  styleOptions: {
    fillStyle: 'fillStyle',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| all | string | Determines the visibility of all data points of the box plot. | 
| outlier | string | Determines the visibility of the outlier in a box plot. | 
| style | IResolvable | Box | The style options of the box plot. | 
allDataPointsVisibility?
Type:
string
(optional)
Determines the visibility of all data points of the box plot.
outlierVisibility?
Type:
string
(optional)
Determines the visibility of the outlier in a box plot.
styleOptions?
Type:
IResolvable | Box
(optional)
The style options of the box plot.
