Show / Hide Table of Contents

Class CfnDashboard.AxisLinearScaleProperty

The liner axis scale setup.

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

This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-axislinearscale.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 axisLinearScaleProperty = new AxisLinearScaleProperty {
    StepCount = 123,
    StepSize = 123
};

Synopsis

Constructors

AxisLinearScaleProperty()

Properties

StepCount

The step count setup of a linear axis.

StepSize

The step size setup of a linear axis.

Constructors

AxisLinearScaleProperty()

public AxisLinearScaleProperty()

Properties

StepCount

The step count setup of a linear axis.

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

System.Nullable<System.Double>

Remarks

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

StepSize

The step size setup of a linear axis.

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

System.Nullable<System.Double>

Remarks

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

Implements

CfnDashboard.IAxisLinearScaleProperty
Back to top Generated by DocFX