Interface CfnTemplate.LineChartLineStyleSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.LineChartLineStyleSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.LineChartLineStyleSettingsProperty
extends software.amazon.jsii.JsiiSerializable
Line styles options for a 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.*; LineChartLineStyleSettingsProperty lineChartLineStyleSettingsProperty = LineChartLineStyleSettingsProperty.builder() .lineInterpolation("lineInterpolation") .lineStyle("lineStyle") .lineVisibility("lineVisibility") .lineWidth("lineWidth") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTemplate.LineChartLineStyleSettingsProperty
static final class
An implementation forCfnTemplate.LineChartLineStyleSettingsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLineInterpolation
Interpolation style for line series.LINEAR
: Show as default, linear style.SMOOTH
: Show as a smooth curve.STEPPED
: Show steps in line.
-
getLineStyle
Line style for line series.SOLID
: Show as a solid line.DOTTED
: Show as a dotted line.DASHED
: Show as a dashed line.
-
getLineVisibility
Configuration option that determines whether to show the line for the series. -
getLineWidth
Width that determines the line thickness. -
builder
-