Interface CfnDashboard.DataFieldSeriesItemProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.DataFieldSeriesItemProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.DataFieldSeriesItemProperty
extends software.amazon.jsii.JsiiSerializable
The data 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.*;
DataFieldSeriesItemProperty dataFieldSeriesItemProperty = DataFieldSeriesItemProperty.builder()
.axisBinding("axisBinding")
.fieldId("fieldId")
// the properties below are optional
.fieldValue("fieldValue")
.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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.DataFieldSeriesItemPropertystatic final classAn implementation forCfnDashboard.DataFieldSeriesItemProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The axis that you are binding the field to.The field ID of the field that you are setting the axis binding to.default StringThe field value of the field that you are setting the axis binding to.default ObjectThe options that determine the presentation of line series associated to the field.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAxisBinding
The axis that you are binding the field to.- See Also:
-
getFieldId
The field ID of the field that you are setting the axis binding to.- See Also:
-
getFieldValue
The field value of the field that you are setting the axis binding to.- See Also:
-
getSettings
The options that determine the presentation of line series associated to the field.Returns union: either
IResolvableorCfnDashboard.LineChartSeriesSettingsProperty- See Also:
-
builder
-