aws-cdk-lib.aws_quicksight.CfnTemplate.NumericAxisOptionsProperty

interface NumericAxisOptionsProperty

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

The options for an axis with a numeric field.

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 numericAxisOptionsProperty: quicksight.CfnTemplate.NumericAxisOptionsProperty = {
  range: {
    dataDriven: dataDriven,
    minMax: {
      maximum: 123,
      minimum: 123,
    },
  },
  scale: {
    linear: {
      stepCount: 123,
      stepSize: 123,
    },
    logarithmic: {
      base: 123,
    },
  },
};

Properties

NameTypeDescription
range?IResolvable | AxisDisplayRangePropertyThe range setup of a numeric axis.
scale?IResolvable | AxisScalePropertyThe scale setup of a numeric axis.

range?

Type: IResolvable | AxisDisplayRangeProperty (optional)

The range setup of a numeric axis.


scale?

Type: IResolvable | AxisScaleProperty (optional)

The scale setup of a numeric axis.