Interface CfnDashboard.LineChartLineStyleSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDashboard.LineChartLineStyleSettingsProperty.Jsii$Proxy
Enclosing class:
CfnDashboard

@Stability(Stable) public static interface CfnDashboard.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();
 

See Also: