interface LineChartSeriesSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.LineChartSeriesSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_LineChartSeriesSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.LineChartSeriesSettingsProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.LineChartSeriesSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const lineChartSeriesSettingsProperty: quicksight_mixins.CfnAnalysisPropsMixin.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 .

.NET
Go
Java
Python
TypeScript