Interface CfnTemplate.LineChartMarkerStyleSettingsProperty

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

@Stability(Stable) public static interface CfnTemplate.LineChartMarkerStyleSettingsProperty extends software.amazon.jsii.JsiiSerializable
Marker 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.*;
 LineChartMarkerStyleSettingsProperty lineChartMarkerStyleSettingsProperty = LineChartMarkerStyleSettingsProperty.builder()
         .markerColor("markerColor")
         .markerShape("markerShape")
         .markerSize("markerSize")
         .markerVisibility("markerVisibility")
         .build();
 

See Also: