aws-cdk-lib.aws_quicksight.CfnAnalysis.DataFieldSeriesItemProperty

interface DataFieldSeriesItemProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnAnalysis.DataFieldSeriesItemProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_DataFieldSeriesItemProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnAnalysis.DataFieldSeriesItemProperty
Pythonaws_cdk.aws_quicksight.CfnAnalysis.DataFieldSeriesItemProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnAnalysis » DataFieldSeriesItemProperty

The data 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const dataFieldSeriesItemProperty: quicksight.CfnAnalysis.DataFieldSeriesItemProperty = {
  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',
    },
  },
};

Properties

NameTypeDescription
axisBindingstringThe axis that you are binding the field to.
fieldIdstringThe field ID of the field that you are setting the axis binding to.
fieldValue?stringThe field value of the field that you are setting the axis binding to.
settings?IResolvable | LineChartSeriesSettingsPropertyThe options that determine the presentation of line series associated to the field.

axisBinding

Type: string

The axis that you are binding the field to.


fieldId

Type: string

The field ID of the field that you are setting the axis binding to.


fieldValue?

Type: string (optional)

The field value of the field that you are setting the axis binding to.


settings?

Type: IResolvable | LineChartSeriesSettingsProperty (optional)

The options that determine the presentation of line series associated to the field.