Show / Hide Table of Contents

Class CfnDashboard.NumericAxisOptionsProperty

The options for an axis with a numeric field.

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-numericaxisoptions.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 dataDriven;

var numericAxisOptionsProperty = new NumericAxisOptionsProperty {
    Range = new AxisDisplayRangeProperty {
        DataDriven = dataDriven,
        MinMax = new AxisDisplayMinMaxRangeProperty {
            Maximum = 123,
            Minimum = 123
        }
    },
    Scale = new AxisScaleProperty {
        Linear = new AxisLinearScaleProperty {
            StepCount = 123,
            StepSize = 123
        },
        Logarithmic = new AxisLogarithmicScaleProperty {
            Base = 123
        }
    }
};

Synopsis

Constructors

NumericAxisOptionsProperty()

Properties

Range

The range setup of a numeric axis.

Scale

The scale setup of a numeric axis.

Constructors

NumericAxisOptionsProperty()

public NumericAxisOptionsProperty()

Properties

Range

The range setup of a numeric axis.

public object Range { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-numericaxisoptions.html#cfn-quicksight-dashboard-numericaxisoptions-range

Scale

The scale setup of a numeric axis.

public object Scale { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-numericaxisoptions.html#cfn-quicksight-dashboard-numericaxisoptions-scale

Implements

CfnDashboard.INumericAxisOptionsProperty
Back to top Generated by DocFX