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

.NET
Go
Java
Python
TypeScript