interface SeriesItemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.SeriesItemProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.SeriesItemProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.SeriesItemProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnAnalysis » SeriesItemProperty |
The series item configuration of a line chart.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
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 seriesItemProperty: quicksight.CfnAnalysis.SeriesItemProperty = {
dataFieldSeriesItem: {
axisBinding: 'axisBinding',
fieldId: 'fieldId',
// the properties below are optional
fieldValue: 'fieldValue',
settings: {
lineStyleSettings: {
lineInterpolation: 'lineInterpolation',
lineStyle: 'lineStyle',
lineVisibility: 'lineVisibility',
lineWidth: 'lineWidth',
},
markerStyleSettings: {
markerColor: 'markerColor',
markerShape: 'markerShape',
markerSize: 'markerSize',
markerVisibility: 'markerVisibility',
},
},
},
fieldSeriesItem: {
axisBinding: 'axisBinding',
fieldId: 'fieldId',
// the properties below are optional
settings: {
lineStyleSettings: {
lineInterpolation: 'lineInterpolation',
lineStyle: 'lineStyle',
lineVisibility: 'lineVisibility',
lineWidth: 'lineWidth',
},
markerStyleSettings: {
markerColor: 'markerColor',
markerShape: 'markerShape',
markerSize: 'markerSize',
markerVisibility: 'markerVisibility',
},
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| data | IResolvable | Data | The data field series item configuration of a line chart. |
| field | IResolvable | Field | The field series item configuration of a line chart. |
dataFieldSeriesItem?
Type:
IResolvable | Data
(optional)
The data field series item configuration of a line chart.
fieldSeriesItem?
Type:
IResolvable | Field
(optional)
The field series item configuration of a line chart.

.NET
Java
Python
TypeScript