interface AxisDisplayRangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.AxisDisplayRangeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_AxisDisplayRangeProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.AxisDisplayRangeProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.AxisDisplayRangeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » AxisDisplayRangeProperty |
The range setup of a numeric axis display range.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
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';
declare const dataDriven: any;
const axisDisplayRangeProperty: quicksight_mixins.CfnAnalysisPropsMixin.AxisDisplayRangeProperty = {
dataDriven: dataDriven,
minMax: {
maximum: 123,
minimum: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| data | any | The data-driven setup of an axis display range. |
| min | IResolvable | Axis | The minimum and maximum setup of an axis display range. |
dataDriven?
Type:
any
(optional)
The data-driven setup of an axis display range.
minMax?
Type:
IResolvable | Axis
(optional)
The minimum and maximum setup of an axis display range.

.NET
Go
Java
Python
TypeScript