Show / Hide Table of Contents

Class CfnTemplate.SeriesItemProperty

The series item configuration of a line chart.

Inheritance
object
CfnTemplate.SeriesItemProperty
Implements
CfnTemplate.ISeriesItemProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTemplate.SeriesItemProperty : CfnTemplate.ISeriesItemProperty
Syntax (vb)
Public Class CfnTemplate.SeriesItemProperty Implements CfnTemplate.ISeriesItemProperty
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-template-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()

The series item configuration of a line chart.

Properties

DataFieldSeriesItem

The data field series item configuration of a line chart.

FieldSeriesItem

The field series item configuration of a line chart.

Constructors

SeriesItemProperty()

The series item configuration of a line chart.

public SeriesItemProperty()
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-template-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"
                         }
                     }
                 }
             };

Properties

DataFieldSeriesItem

The data field series item configuration of a line chart.

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

object

Remarks

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

FieldSeriesItem

The field series item configuration of a line chart.

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

object

Remarks

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

Implements

CfnTemplate.ISeriesItemProperty
Back to top Generated by DocFX