interface NumericAxisOptionsProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.QuickSight.CfnTemplate.NumericAxisOptionsProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_NumericAxisOptionsProperty |
![]() | software.amazon.awscdk.services.quicksight.CfnTemplate.NumericAxisOptionsProperty |
![]() | aws_cdk.aws_quicksight.CfnTemplate.NumericAxisOptionsProperty |
![]() | aws-cdk-lib » aws_quicksight » CfnTemplate » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
declare const dataDriven: any;
const numericAxisOptionsProperty: quicksight.CfnTemplate.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.