aws-cdk-lib.aws_quicksight.CfnDashboard.LineSeriesAxisDisplayOptionsProperty

interface LineSeriesAxisDisplayOptionsProperty

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

The series axis 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';

declare const dataDriven: any;
const lineSeriesAxisDisplayOptionsProperty: quicksight.CfnDashboard.LineSeriesAxisDisplayOptionsProperty = {
  axisOptions: {
    axisLineVisibility: 'axisLineVisibility',
    axisOffset: 'axisOffset',
    dataOptions: {
      dateAxisOptions: {
        missingDateVisibility: 'missingDateVisibility',
      },
      numericAxisOptions: {
        range: {
          dataDriven: dataDriven,
          minMax: {
            maximum: 123,
            minimum: 123,
          },
        },
        scale: {
          linear: {
            stepCount: 123,
            stepSize: 123,
          },
          logarithmic: {
            base: 123,
          },
        },
      },
    },
    gridLineVisibility: 'gridLineVisibility',
    scrollbarOptions: {
      visibility: 'visibility',
      visibleRange: {
        percentRange: {
          from: 123,
          to: 123,
        },
      },
    },
    tickLabelOptions: {
      labelOptions: {
        customLabel: 'customLabel',
        fontConfiguration: {
          fontColor: 'fontColor',
          fontDecoration: 'fontDecoration',
          fontSize: {
            relative: 'relative',
          },
          fontStyle: 'fontStyle',
          fontWeight: {
            name: 'name',
          },
        },
        visibility: 'visibility',
      },
      rotationAngle: 123,
    },
  },
  missingDataConfigurations: [{
    treatmentOption: 'treatmentOption',
  }],
};

Properties

NameTypeDescription
axisOptions?IResolvable | AxisDisplayOptionsPropertyThe options that determine the presentation of the line series axis.
missingDataConfigurations?IResolvable | IResolvable | MissingDataConfigurationProperty[]The configuration options that determine how missing data is treated during the rendering of a line chart.

axisOptions?

Type: IResolvable | AxisDisplayOptionsProperty (optional)

The options that determine the presentation of the line series axis.


missingDataConfigurations?

Type: IResolvable | IResolvable | MissingDataConfigurationProperty[] (optional)

The configuration options that determine how missing data is treated during the rendering of a line chart.