interface HistogramBinOptionsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.HistogramBinOptionsProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDashboard.HistogramBinOptionsProperty |
Python | aws_cdk.aws_quicksight.CfnDashboard.HistogramBinOptionsProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnDashboard » HistogramBinOptionsProperty |
The options that determine the presentation of histogram bins.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const histogramBinOptionsProperty: quicksight.CfnDashboard.HistogramBinOptionsProperty = {
binCount: {
value: 123,
},
binWidth: {
binCountLimit: 123,
value: 123,
},
selectedBinType: 'selectedBinType',
startValue: 123,
};
Properties
Name | Type | Description |
---|---|---|
bin | IResolvable | Bin | The options that determine the bin count of a histogram. |
bin | IResolvable | Bin | The options that determine the bin width of a histogram. |
selected | string | The options that determine the selected bin type. |
start | number | The options that determine the bin start value. |
binCount?
Type:
IResolvable
|
Bin
(optional)
The options that determine the bin count of a histogram.
binWidth?
Type:
IResolvable
|
Bin
(optional)
The options that determine the bin width of a histogram.
selectedBinType?
Type:
string
(optional)
The options that determine the selected bin type.
startValue?
Type:
number
(optional)
The options that determine the bin start value.