Interface CfnDashboard.LineChartDefaultSeriesSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.LineChartDefaultSeriesSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.LineChartDefaultSeriesSettingsProperty
extends software.amazon.jsii.JsiiSerializable
The options that determine the default presentation of all line series in
LineChartVisual .
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.*;
LineChartDefaultSeriesSettingsProperty lineChartDefaultSeriesSettingsProperty = LineChartDefaultSeriesSettingsProperty.builder()
.axisBinding("axisBinding")
.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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.LineChartDefaultSeriesSettingsPropertystatic final classAn implementation forCfnDashboard.LineChartDefaultSeriesSettingsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAxisBinding
The axis to which you are binding all line series to.- See Also:
-
getLineStyleSettings
Line styles options for all line series in the visual.Returns union: either
IResolvableorCfnDashboard.LineChartLineStyleSettingsProperty- See Also:
-
getMarkerStyleSettings
Marker styles options for all line series in the visual.Returns union: either
IResolvableorCfnDashboard.LineChartMarkerStyleSettingsProperty- See Also:
-
builder
-