interface ArcAxisDisplayRangeProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.ArcAxisDisplayRangeProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_ArcAxisDisplayRangeProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.ArcAxisDisplayRangeProperty | 
  Python | aws_cdk.aws_quicksight.CfnDashboard.ArcAxisDisplayRangeProperty | 
  TypeScript  | aws-cdk-lib » aws_quicksight » CfnDashboard » ArcAxisDisplayRangeProperty | 
The arc axis range of a GaugeChartVisual .
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';
const arcAxisDisplayRangeProperty: quicksight.CfnDashboard.ArcAxisDisplayRangeProperty = {
  max: 123,
  min: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| max? | number | The maximum value of the arc axis range. | 
| min? | number | The minimum value of the arc axis range. | 
max?
Type:
number
(optional)
The maximum value of the arc axis range.
min?
Type:
number
(optional)
The minimum value of the arc axis range.

 .NET
 Go
 Java
 Python
 TypeScript