interface BoxPlotOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnAnalysisPropsMixin.BoxPlotOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnAnalysisPropsMixin_BoxPlotOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnAnalysisPropsMixin.BoxPlotOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnAnalysisPropsMixin.BoxPlotOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnAnalysisPropsMixin » 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/cfn-property-mixins';
const boxPlotOptionsProperty: quicksight.CfnAnalysisPropsMixin.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.

.NET
Go
Java
Python
TypeScript