Show / Hide Table of Contents

Class CfnAnalysis.HistogramBinOptionsProperty

The options that determine the presentation of histogram bins.

Inheritance
System.Object
CfnAnalysis.HistogramBinOptionsProperty
Implements
CfnAnalysis.IHistogramBinOptionsProperty
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public class HistogramBinOptionsProperty : Object, CfnAnalysis.IHistogramBinOptionsProperty
Syntax (vb)
Public Class HistogramBinOptionsProperty
    Inherits Object
    Implements CfnAnalysis.IHistogramBinOptionsProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-histogrambinoptions.html

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

Constructors

HistogramBinOptionsProperty()

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.

Constructors

HistogramBinOptionsProperty()

public HistogramBinOptionsProperty()

Properties

BinCount

The options that determine the bin count of a histogram.

public object BinCount { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-histogrambinoptions.html#cfn-quicksight-analysis-histogrambinoptions-bincount

BinWidth

The options that determine the bin width of a histogram.

public object BinWidth { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-histogrambinoptions.html#cfn-quicksight-analysis-histogrambinoptions-binwidth

SelectedBinType

The options that determine the selected bin type.

public string SelectedBinType { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-histogrambinoptions.html#cfn-quicksight-analysis-histogrambinoptions-selectedbintype

StartValue

The options that determine the bin start value.

public Nullable<double> StartValue { get; set; }
Property Value

System.Nullable<System.Double>

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-histogrambinoptions.html#cfn-quicksight-analysis-histogrambinoptions-startvalue

Implements

CfnAnalysis.IHistogramBinOptionsProperty
Back to top Generated by DocFX