interface AxisScaleProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.AxisScaleProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.AxisScaleProperty | 
|  Python | aws_cdk.aws_quicksight.CfnAnalysis.AxisScaleProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnAnalysis»AxisScaleProperty | 
The scale setup options for a numeric axis display.
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 * as quicksight from '@aws-cdk/aws-quicksight';
const axisScaleProperty: quicksight.CfnAnalysis.AxisScaleProperty = {
  linear: {
    stepCount: 123,
    stepSize: 123,
  },
  logarithmic: {
    base: 123,
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| linear? | IResolvable | Axis | The linear axis scale setup. | 
| logarithmic? | IResolvable | Axis | The logarithmic axis scale setup. | 
linear?
Type:
IResolvable | Axis
(optional)
The linear axis scale setup.
logarithmic?
Type:
IResolvable | Axis
(optional)
The logarithmic axis scale setup.
