interface ArcAxisConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.ArcAxisConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_ArcAxisConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.ArcAxisConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.ArcAxisConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » ArcAxisConfigurationProperty |
The arc axis configuration of a GaugeChartVisual .
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';
const arcAxisConfigurationProperty: quicksight_mixins.CfnAnalysisPropsMixin.ArcAxisConfigurationProperty = {
range: {
max: 123,
min: 123,
},
reserveRange: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| range? | IResolvable | Arc | The arc axis range of a GaugeChartVisual . |
| reserve | number | The reserved range of the arc axis. |
range?
Type:
IResolvable | Arc
(optional)
The arc axis range of a GaugeChartVisual .
reserveRange?
Type:
number
(optional, default: 0)
The reserved range of the arc axis.

.NET
Go
Java
Python
TypeScript