interface HistogramBinOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.HistogramBinOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_HistogramBinOptionsProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.HistogramBinOptionsProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.HistogramBinOptionsProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnAnalysis » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const histogramBinOptionsProperty: quicksight.CfnAnalysis.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.

.NET
Go
Java
Python
TypeScript