interface AxisLinearScaleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.AxisLinearScaleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_AxisLinearScaleProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.AxisLinearScaleProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.AxisLinearScaleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const axisLinearScaleProperty: quicksight_mixins.CfnAnalysisPropsMixin.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.

.NET
Go
Java
Python
TypeScript