interface FieldSeriesItemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.FieldSeriesItemProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_FieldSeriesItemProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.FieldSeriesItemProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.FieldSeriesItemProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » FieldSeriesItemProperty |
The field series item configuration of a line chart.
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 fieldSeriesItemProperty: quicksight_mixins.CfnAnalysisPropsMixin.FieldSeriesItemProperty = {
axisBinding: 'axisBinding',
fieldId: 'fieldId',
settings: {
lineStyleSettings: {
lineInterpolation: 'lineInterpolation',
lineStyle: 'lineStyle',
lineVisibility: 'lineVisibility',
lineWidth: 'lineWidth',
},
markerStyleSettings: {
markerColor: 'markerColor',
markerShape: 'markerShape',
markerSize: 'markerSize',
markerVisibility: 'markerVisibility',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| axis | string | The axis that you are binding the field to. |
| field | string | The field ID of the field for which you are setting the axis binding. |
| settings? | IResolvable | Line | The options that determine the presentation of line series associated to the field. |
axisBinding?
Type:
string
(optional)
The axis that you are binding the field to.
fieldId?
Type:
string
(optional)
The field ID of the field for which you are setting the axis binding.
settings?
Type:
IResolvable | Line
(optional)
The options that determine the presentation of line series associated to the field.

.NET
Go
Java
Python
TypeScript