aws-cdk-lib.aws_quicksight.CfnTemplate.LineChartDefaultSeriesSettingsProperty

interface LineChartDefaultSeriesSettingsProperty

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

The options that determine the default presentation of all line series in LineChartVisual .

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 lineChartDefaultSeriesSettingsProperty: quicksight.CfnTemplate.LineChartDefaultSeriesSettingsProperty = {
  axisBinding: 'axisBinding',
  lineStyleSettings: {
    lineInterpolation: 'lineInterpolation',
    lineStyle: 'lineStyle',
    lineVisibility: 'lineVisibility',
    lineWidth: 'lineWidth',
  },
  markerStyleSettings: {
    markerColor: 'markerColor',
    markerShape: 'markerShape',
    markerSize: 'markerSize',
    markerVisibility: 'markerVisibility',
  },
};

Properties

NameTypeDescription
axisBinding?stringThe axis to which you are binding all line series to.
lineStyleSettings?IResolvable | LineChartLineStyleSettingsPropertyLine styles options for all line series in the visual.
markerStyleSettings?IResolvable | LineChartMarkerStyleSettingsPropertyMarker styles options for all line series in the visual.

axisBinding?

Type: string (optional)

The axis to which you are binding all line series to.


lineStyleSettings?

Type: IResolvable | LineChartLineStyleSettingsProperty (optional)

Line styles options for all line series in the visual.


markerStyleSettings?

Type: IResolvable | LineChartMarkerStyleSettingsProperty (optional)

Marker styles options for all line series in the visual.