Show / Hide Table of Contents

Class CfnDashboard.LineSeriesAxisDisplayOptionsProperty

The series axis configuration of a line chart.

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-lineseriesaxisdisplayoptions.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 lineSeriesAxisDisplayOptionsProperty = new LineSeriesAxisDisplayOptionsProperty {
    AxisOptions = new AxisDisplayOptionsProperty {
        AxisLineVisibility = "axisLineVisibility",
        AxisOffset = "axisOffset",
        DataOptions = 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
                    }
                }
            }
        },
        GridLineVisibility = "gridLineVisibility",
        ScrollbarOptions = new ScrollBarOptionsProperty {
            Visibility = "visibility",
            VisibleRange = new VisibleRangeOptionsProperty {
                PercentRange = new PercentVisibleRangeProperty {
                    From = 123,
                    To = 123
                }
            }
        },
        TickLabelOptions = new AxisTickLabelOptionsProperty {
            LabelOptions = new LabelOptionsProperty {
                CustomLabel = "customLabel",
                FontConfiguration = new FontConfigurationProperty {
                    FontColor = "fontColor",
                    FontDecoration = "fontDecoration",
                    FontSize = new FontSizeProperty {
                        Relative = "relative"
                    },
                    FontStyle = "fontStyle",
                    FontWeight = new FontWeightProperty {
                        Name = "name"
                    }
                },
                Visibility = "visibility"
            },
            RotationAngle = 123
        }
    },
    MissingDataConfigurations = new [] { new MissingDataConfigurationProperty {
        TreatmentOption = "treatmentOption"
    } }
};

Synopsis

Constructors

LineSeriesAxisDisplayOptionsProperty()

Properties

AxisOptions

The options that determine the presentation of the line series axis.

MissingDataConfigurations

The configuration options that determine how missing data is treated during the rendering of a line chart.

Constructors

LineSeriesAxisDisplayOptionsProperty()

public LineSeriesAxisDisplayOptionsProperty()

Properties

AxisOptions

The options that determine the presentation of the line series axis.

public object AxisOptions { get; set; }
Property Value

System.Object

Remarks

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

MissingDataConfigurations

The configuration options that determine how missing data is treated during the rendering of a line chart.

public object MissingDataConfigurations { get; set; }
Property Value

System.Object

Remarks

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

Implements

CfnDashboard.ILineSeriesAxisDisplayOptionsProperty
Back to top Generated by DocFX