Show / Hide Table of Contents

Class CfnAnalysis.AxisDataOptionsProperty

The data options for an axis.

Inheritance
System.Object
CfnAnalysis.AxisDataOptionsProperty
Implements
CfnAnalysis.IAxisDataOptionsProperty
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public class AxisDataOptionsProperty : Object, CfnAnalysis.IAxisDataOptionsProperty
Syntax (vb)
Public Class AxisDataOptionsProperty
    Inherits Object
    Implements CfnAnalysis.IAxisDataOptionsProperty
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-analysis-axisdataoptions.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 axisDataOptionsProperty = new AxisDataOptionsProperty {
    DateAxisOptions = new DateAxisOptionsProperty {
        MissingDateVisibility = "missingDateVisibility"
    },
    NumericAxisOptions = 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

AxisDataOptionsProperty()

Properties

DateAxisOptions

The options for an axis with a date field.

NumericAxisOptions

The options for an axis with a numeric field.

Constructors

AxisDataOptionsProperty()

public AxisDataOptionsProperty()

Properties

DateAxisOptions

The options for an axis with a date field.

public object DateAxisOptions { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-axisdataoptions.html#cfn-quicksight-analysis-axisdataoptions-dateaxisoptions

NumericAxisOptions

The options for an axis with a numeric field.

public object NumericAxisOptions { get; set; }
Property Value

System.Object

Remarks

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

Implements

CfnAnalysis.IAxisDataOptionsProperty
Back to top Generated by DocFX