interface BoxPlotOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.BoxPlotOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_BoxPlotOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.BoxPlotOptionsProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.BoxPlotOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const boxPlotOptionsProperty: quicksight_mixins.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