interface LineChartMarkerStyleSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.LineChartMarkerStyleSettingsProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTemplate.LineChartMarkerStyleSettingsProperty |
Python | aws_cdk.aws_quicksight.CfnTemplate.LineChartMarkerStyleSettingsProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnTemplate » LineChartMarkerStyleSettingsProperty |
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 * as quicksight from '@aws-cdk/aws-quicksight';
const lineChartMarkerStyleSettingsProperty: quicksight.CfnTemplate.LineChartMarkerStyleSettingsProperty = {
markerColor: 'markerColor',
markerShape: 'markerShape',
markerSize: 'markerSize',
markerVisibility: 'markerVisibility',
};
Properties
| Name | Type | Description |
|---|---|---|
| marker | string | Color of marker in the series. |
| marker | string | Shape option for markers in the series. |
| marker | string | Size of marker in the series. |
| marker | string | Configuration option that determines whether to show the markers in the series. |
markerColor?
Type:
string
(optional)
Color of marker in the series.
markerShape?
Type:
string
(optional)
Shape option for markers in the series.
CIRCLE: Show marker as a circle.TRIANGLE: Show marker as a triangle.SQUARE: Show marker as a square.DIAMOND: Show marker as a diamond.ROUNDED_SQUARE: Show marker as a rounded square.
markerSize?
Type:
string
(optional)
Size of marker in the series.
markerVisibility?
Type:
string
(optional)
Configuration option that determines whether to show the markers in the series.

.NET
Java
Python
TypeScript