interface NumericAxisOptionsProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.NumericAxisOptionsProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.NumericAxisOptionsProperty | 
|  Python | aws_cdk.aws_quicksight.CfnDashboard.NumericAxisOptionsProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnDashboard»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.CfnDashboard.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.
