aws-cdk-lib.aws_quicksight.CfnAnalysis.SeriesItemProperty

interface SeriesItemProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnAnalysis.SeriesItemProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_SeriesItemProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnAnalysis.SeriesItemProperty
Pythonaws_cdk.aws_quicksight.CfnAnalysis.SeriesItemProperty
TypeScript aws-cdk-lib » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
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

NameTypeDescription
dataFieldSeriesItem?IResolvable | DataFieldSeriesItemPropertyThe data field series item configuration of a line chart.
fieldSeriesItem?IResolvable | FieldSeriesItemPropertyThe field series item configuration of a line chart.

dataFieldSeriesItem?

Type: IResolvable | DataFieldSeriesItemProperty (optional)

The data field series item configuration of a line chart.


fieldSeriesItem?

Type: IResolvable | FieldSeriesItemProperty (optional)

The field series item configuration of a line chart.