Show / Hide Table of Contents

Class CfnTemplatePropsMixin.NumericAxisOptionsProperty

The options for an axis with a numeric field.

Inheritance
object
CfnTemplatePropsMixin.NumericAxisOptionsProperty
Implements
CfnTemplatePropsMixin.INumericAxisOptionsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnTemplatePropsMixin.NumericAxisOptionsProperty : CfnTemplatePropsMixin.INumericAxisOptionsProperty
Syntax (vb)
Public Class CfnTemplatePropsMixin.NumericAxisOptionsProperty Implements CfnTemplatePropsMixin.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.Mixins.Preview.AWS.QuickSight.Mixins;

             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()

The options for an axis with a numeric field.

Properties

Range

The range setup of a numeric axis.

Scale

The scale setup of a numeric axis.

Constructors

NumericAxisOptionsProperty()

The options for an axis with a numeric field.

public NumericAxisOptionsProperty()
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.Mixins.Preview.AWS.QuickSight.Mixins;

             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
                     }
                 }
             };

Properties

Range

The range setup of a numeric axis.

public object? Range { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnTemplatePropsMixin.IAxisDisplayRangeProperty

Scale

The scale setup of a numeric axis.

public object? Scale { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnTemplatePropsMixin.IAxisScaleProperty

Implements

CfnTemplatePropsMixin.INumericAxisOptionsProperty
Back to top Generated by DocFX