Show / Hide Table of Contents

Interface CfnAnalysis.IAxisScaleProperty

The scale setup options for a numeric axis display.

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

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-axisscale.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 axisScaleProperty = new AxisScaleProperty {
                 Linear = new AxisLinearScaleProperty {
                     StepCount = 123,
                     StepSize = 123
                 },
                 Logarithmic = new AxisLogarithmicScaleProperty {
                     Base = 123
                 }
             };

Synopsis

Properties

Linear

The linear axis scale setup.

Logarithmic

The logarithmic axis scale setup.

Properties

Linear

The linear axis scale setup.

object? Linear { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-axisscale.html#cfn-quicksight-analysis-axisscale-linear

Logarithmic

The logarithmic axis scale setup.

object? Logarithmic { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-axisscale.html#cfn-quicksight-analysis-axisscale-logarithmic

Back to top Generated by DocFX