Interface CfnAnalysis.LineChartSeriesSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.LineChartSeriesSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.LineChartSeriesSettingsProperty
extends software.amazon.jsii.JsiiSerializable
The options that determine the presentation of a line series in the visual.
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.*;
LineChartSeriesSettingsProperty lineChartSeriesSettingsProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.LineChartSeriesSettingsPropertystatic final classAn implementation forCfnAnalysis.LineChartSeriesSettingsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLineStyleSettings
Line styles options for a line series inLineChartVisual.Returns union: either
IResolvableorCfnAnalysis.LineChartLineStyleSettingsProperty- See Also:
-
getMarkerStyleSettings
Marker styles options for a line series inLineChartVisual.Returns union: either
IResolvableorCfnAnalysis.LineChartMarkerStyleSettingsProperty- See Also:
-
builder
-