interface AxisDisplayRangeProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.AxisDisplayRangeProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTemplate.AxisDisplayRangeProperty |
Python | aws_cdk.aws_quicksight.CfnTemplate.AxisDisplayRangeProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnTemplate » 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 * as quicksight from '@aws-cdk/aws-quicksight';
declare const dataDriven: any;
const axisDisplayRangeProperty: quicksight.CfnTemplate.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.