interface LineChartSeriesSettingsProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.LineChartSeriesSettingsProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.LineChartSeriesSettingsProperty | 
|  Python | aws_cdk.aws_quicksight.CfnAnalysis.LineChartSeriesSettingsProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnAnalysis»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.CfnAnalysis.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 .
