Interface CfnTemplate.FieldSeriesItemProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.FieldSeriesItemProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.FieldSeriesItemProperty
extends software.amazon.jsii.JsiiSerializable
The field series item configuration of a line chart.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.quicksight.*; FieldSeriesItemProperty fieldSeriesItemProperty = FieldSeriesItemProperty.builder() .axisBinding("axisBinding") .fieldId("fieldId") // the properties below are optional .settings(LineChartSeriesSettingsProperty.builder() .lineStyleSettings(LineChartLineStyleSettingsProperty.builder() .lineInterpolation("lineInterpolation") .lineStyle("lineStyle") .lineVisibility("lineVisibility") .lineWidth("lineWidth") .build()) .markerStyleSettings(LineChartMarkerStyleSettingsProperty.builder() .markerColor("markerColor") .markerShape("markerShape") .markerSize("markerSize") .markerVisibility("markerVisibility") .build()) .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTemplate.FieldSeriesItemProperty
static final class
An implementation forCfnTemplate.FieldSeriesItemProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAxisBinding
The axis that you are binding the field to. -
getFieldId
The field ID of the field for which you are setting the axis binding. -
getSettings
The options that determine the presentation of line series associated to the field. -
builder
-