Class CfnAnalysisPropsMixin.BoxPlotOptionsProperty
The options of a box plot visual.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnAnalysisPropsMixin.BoxPlotOptionsProperty : CfnAnalysisPropsMixin.IBoxPlotOptionsProperty
Syntax (vb)
Public Class CfnAnalysisPropsMixin.BoxPlotOptionsProperty Implements CfnAnalysisPropsMixin.IBoxPlotOptionsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins;
var boxPlotOptionsProperty = new BoxPlotOptionsProperty {
AllDataPointsVisibility = "allDataPointsVisibility",
OutlierVisibility = "outlierVisibility",
StyleOptions = new BoxPlotStyleOptionsProperty {
FillStyle = "fillStyle"
}
};
Synopsis
Constructors
| BoxPlotOptionsProperty() | The options of a box plot visual. |
Properties
| AllDataPointsVisibility | Determines the visibility of all data points of the box plot. |
| OutlierVisibility | Determines the visibility of the outlier in a box plot. |
| StyleOptions | The style options of the box plot. |
Constructors
BoxPlotOptionsProperty()
The options of a box plot visual.
public BoxPlotOptionsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins;
var boxPlotOptionsProperty = new BoxPlotOptionsProperty {
AllDataPointsVisibility = "allDataPointsVisibility",
OutlierVisibility = "outlierVisibility",
StyleOptions = new BoxPlotStyleOptionsProperty {
FillStyle = "fillStyle"
}
};
Properties
AllDataPointsVisibility
Determines the visibility of all data points of the box plot.
public string? AllDataPointsVisibility { get; set; }
Property Value
Remarks
OutlierVisibility
Determines the visibility of the outlier in a box plot.
public string? OutlierVisibility { get; set; }
Property Value
Remarks
StyleOptions
The style options of the box plot.
public object? StyleOptions { get; set; }