interface AxisLinearScaleProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.AxisLinearScaleProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_AxisLinearScaleProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.AxisLinearScaleProperty | 
|  Python | aws_cdk.aws_quicksight.CfnAnalysis.AxisLinearScaleProperty | 
|  TypeScript | aws-cdk-lib»aws_quicksight»CfnAnalysis»AxisLinearScaleProperty | 
The liner axis scale setup.
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';
const axisLinearScaleProperty: quicksight.CfnAnalysis.AxisLinearScaleProperty = {
  stepCount: 123,
  stepSize: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| step | number | The step count setup of a linear axis. | 
| step | number | The step size setup of a linear axis. | 
stepCount?
Type:
number
(optional)
The step count setup of a linear axis.
stepSize?
Type:
number
(optional)
The step size setup of a linear axis.
