interface LineChartSeriesSettingsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.LineChartSeriesSettingsProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDashboard.LineChartSeriesSettingsProperty |
Python | aws_cdk.aws_quicksight.CfnDashboard.LineChartSeriesSettingsProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnDashboard » LineChartSeriesSettingsProperty |
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 * as quicksight from '@aws-cdk/aws-quicksight';
const lineChartSeriesSettingsProperty: quicksight.CfnDashboard.LineChartSeriesSettingsProperty = {
lineStyleSettings: {
lineInterpolation: 'lineInterpolation',
lineStyle: 'lineStyle',
lineVisibility: 'lineVisibility',
lineWidth: 'lineWidth',
},
markerStyleSettings: {
markerColor: 'markerColor',
markerShape: 'markerShape',
markerSize: 'markerSize',
markerVisibility: 'markerVisibility',
},
};
Properties
Name | Type | Description |
---|---|---|
line | IResolvable | Line | Line styles options for a line series in LineChartVisual . |
marker | IResolvable | Line | Marker styles options for a line series in LineChartVisual . |
lineStyleSettings?
Type:
IResolvable
|
Line
(optional)
Line styles options for a line series in LineChartVisual
.
markerStyleSettings?
Type:
IResolvable
|
Line
(optional)
Marker styles options for a line series in LineChartVisual
.