Show / Hide Table of Contents

Class CfnDashboard.FieldSeriesItemProperty

The field series item configuration of a line chart.

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-fieldseriesitem.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 fieldSeriesItemProperty = 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

FieldSeriesItemProperty()

Properties

AxisBinding

The axis that you are binding the field to.

FieldId

The field ID of the field for which you are setting the axis binding.

Settings

The options that determine the presentation of line series associated to the field.

Constructors

FieldSeriesItemProperty()

public FieldSeriesItemProperty()

Properties

AxisBinding

The axis that you are binding the field to.

public string AxisBinding { get; set; }
Property Value

System.String

Remarks

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

FieldId

The field ID of the field for which you are setting the axis binding.

public string FieldId { get; set; }
Property Value

System.String

Remarks

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

Settings

The options that determine the presentation of line series associated to the field.

public object Settings { get; set; }
Property Value

System.Object

Remarks

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

Implements

CfnDashboard.IFieldSeriesItemProperty
Back to top Generated by DocFX