interface AxisDisplayMinMaxRangeProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.AxisDisplayMinMaxRangeProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.AxisDisplayMinMaxRangeProperty | 
|  Python | aws_cdk.aws_quicksight.CfnDashboard.AxisDisplayMinMaxRangeProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnDashboard»AxisDisplayMinMaxRangeProperty | 
The minimum and maximum setup for an axis display range.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const axisDisplayMinMaxRangeProperty: quicksight.CfnDashboard.AxisDisplayMinMaxRangeProperty = {
  maximum: 123,
  minimum: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| maximum? | number | The maximum setup for an axis display range. | 
| minimum? | number | The minimum setup for an axis display range. | 
maximum?
Type:
number
(optional)
The maximum setup for an axis display range.
minimum?
Type:
number
(optional)
The minimum setup for an axis display range.
