interface NumericAxisOptionsProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.NumericAxisOptionsProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnTemplate.NumericAxisOptionsProperty | 
  Python | aws_cdk.aws_quicksight.CfnTemplate.NumericAxisOptionsProperty | 
  TypeScript  | @aws-cdk/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 * as quicksight from '@aws-cdk/aws-quicksight';
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
| Name | Type | Description | 
|---|---|---|
| range? | IResolvable | Axis | The range setup of a numeric axis. | 
| scale? | IResolvable | Axis | The scale setup of a numeric axis. | 
range?
Type:
IResolvable | Axis
(optional)
The range setup of a numeric axis.
scale?
Type:
IResolvable | Axis
(optional)
The scale setup of a numeric axis.

 .NET
 Java
 Python
 TypeScript