aws-cdk-lib.aws_quicksight.CfnAnalysis.AxisDataOptionsProperty

interface AxisDataOptionsProperty

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

The data options for an axis.

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';

declare const dataDriven: any;
const axisDataOptionsProperty: quicksight.CfnAnalysis.AxisDataOptionsProperty = {
  dateAxisOptions: {
    missingDateVisibility: 'missingDateVisibility',
  },
  numericAxisOptions: {
    range: {
      dataDriven: dataDriven,
      minMax: {
        maximum: 123,
        minimum: 123,
      },
    },
    scale: {
      linear: {
        stepCount: 123,
        stepSize: 123,
      },
      logarithmic: {
        base: 123,
      },
    },
  },
};

Properties

NameTypeDescription
dateAxisOptions?IResolvable | DateAxisOptionsPropertyThe options for an axis with a date field.
numericAxisOptions?IResolvable | NumericAxisOptionsPropertyThe options for an axis with a numeric field.

dateAxisOptions?

Type: IResolvable | DateAxisOptionsProperty (optional)

The options for an axis with a date field.


numericAxisOptions?

Type: IResolvable | NumericAxisOptionsProperty (optional)

The options for an axis with a numeric field.