Interface CfnAnalysis.IHistogramBinOptionsProperty
The options that determine the presentation of histogram bins.
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public interface IHistogramBinOptionsProperty
Syntax (vb)
Public Interface IHistogramBinOptionsProperty
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.AWS.QuickSight;
var histogramBinOptionsProperty = new HistogramBinOptionsProperty {
BinCount = new BinCountOptionsProperty {
Value = 123
},
BinWidth = new BinWidthOptionsProperty {
BinCountLimit = 123,
Value = 123
},
SelectedBinType = "selectedBinType",
StartValue = 123
};
Synopsis
Properties
BinCount | The options that determine the bin count of a histogram. |
BinWidth | The options that determine the bin width of a histogram. |
SelectedBinType | The options that determine the selected bin type. |
StartValue | The options that determine the bin start value. |
Properties
BinCount
The options that determine the bin count of a histogram.
virtual object BinCount { get; }
Property Value
System.Object
Remarks
BinWidth
The options that determine the bin width of a histogram.
virtual object BinWidth { get; }
Property Value
System.Object
Remarks
SelectedBinType
The options that determine the selected bin type.
virtual string SelectedBinType { get; }
Property Value
System.String
Remarks
StartValue
The options that determine the bin start value.
virtual Nullable<double> StartValue { get; }
Property Value
System.Nullable<System.Double>