Show / Hide Table of Contents

Class CfnAnalysis.SeriesItemProperty

The series item configuration of a line chart.

Inheritance
System.Object
CfnAnalysis.SeriesItemProperty
Implements
CfnAnalysis.ISeriesItemProperty
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public class SeriesItemProperty : Object, CfnAnalysis.ISeriesItemProperty
Syntax (vb)
Public Class SeriesItemProperty
    Inherits Object
    Implements CfnAnalysis.ISeriesItemProperty
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-seriesitem.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 seriesItemProperty = new SeriesItemProperty {
    DataFieldSeriesItem = new DataFieldSeriesItemProperty {
        AxisBinding = "axisBinding",
        FieldId = "fieldId",

        // the properties below are optional
        FieldValue = "fieldValue",
        Settings = new LineChartSeriesSettingsProperty {
            LineStyleSettings = new LineChartLineStyleSettingsProperty {
                LineInterpolation = "lineInterpolation",
                LineStyle = "lineStyle",
                LineVisibility = "lineVisibility",
                LineWidth = "lineWidth"
            },
            MarkerStyleSettings = new LineChartMarkerStyleSettingsProperty {
                MarkerColor = "markerColor",
                MarkerShape = "markerShape",
                MarkerSize = "markerSize",
                MarkerVisibility = "markerVisibility"
            }
        }
    },
    FieldSeriesItem = new FieldSeriesItemProperty {
        AxisBinding = "axisBinding",
        FieldId = "fieldId",

        // the properties below are optional
        Settings = new LineChartSeriesSettingsProperty {
            LineStyleSettings = new LineChartLineStyleSettingsProperty {
                LineInterpolation = "lineInterpolation",
                LineStyle = "lineStyle",
                LineVisibility = "lineVisibility",
                LineWidth = "lineWidth"
            },
            MarkerStyleSettings = new LineChartMarkerStyleSettingsProperty {
                MarkerColor = "markerColor",
                MarkerShape = "markerShape",
                MarkerSize = "markerSize",
                MarkerVisibility = "markerVisibility"
            }
        }
    }
};

Synopsis

Constructors

SeriesItemProperty()

Properties

DataFieldSeriesItem

The data field series item configuration of a line chart.

FieldSeriesItem

The field series item configuration of a line chart.

Constructors

SeriesItemProperty()

public SeriesItemProperty()

Properties

DataFieldSeriesItem

The data field series item configuration of a line chart.

public object DataFieldSeriesItem { get; set; }
Property Value

System.Object

Remarks

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

FieldSeriesItem

The field series item configuration of a line chart.

public object FieldSeriesItem { get; set; }
Property Value

System.Object

Remarks

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

Implements

CfnAnalysis.ISeriesItemProperty
Back to top Generated by DocFX