Show / Hide Table of Contents

Interface CfnTemplate.INumericAxisOptionsProperty

The options for an axis with a numeric field.

Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnTemplate.INumericAxisOptionsProperty
Syntax (vb)
Public Interface CfnTemplate.INumericAxisOptionsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-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

Properties

Range

The range setup of a numeric axis.

Scale

The scale setup of a numeric axis.

Properties

Range

The range setup of a numeric axis.

object? Range { get; }
Property Value

object

Remarks

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

Scale

The scale setup of a numeric axis.

object? Scale { get; }
Property Value

object

Remarks

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

Back to top Generated by DocFX