interface ArcAxisDisplayRangeProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.ArcAxisDisplayRangeProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_ArcAxisDisplayRangeProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnTemplate.ArcAxisDisplayRangeProperty | 
|  Python | aws_cdk.aws_quicksight.CfnTemplate.ArcAxisDisplayRangeProperty | 
|  TypeScript | aws-cdk-lib»aws_quicksight»CfnTemplate»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.CfnTemplate.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.
