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

.NET
Go
Java
Python
TypeScript