interface AxisDataOptionsProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.QuickSight.CfnTemplate.AxisDataOptionsProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_AxisDataOptionsProperty |
![]() | software.amazon.awscdk.services.quicksight.CfnTemplate.AxisDataOptionsProperty |
![]() | aws_cdk.aws_quicksight.CfnTemplate.AxisDataOptionsProperty |
![]() | aws-cdk-lib » aws_quicksight » CfnTemplate » AxisDataOptionsProperty |
The data options for an axis.
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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
declare const dataDriven: any;
const axisDataOptionsProperty: quicksight.CfnTemplate.AxisDataOptionsProperty = {
dateAxisOptions: {
missingDateVisibility: 'missingDateVisibility',
},
numericAxisOptions: {
range: {
dataDriven: dataDriven,
minMax: {
maximum: 123,
minimum: 123,
},
},
scale: {
linear: {
stepCount: 123,
stepSize: 123,
},
logarithmic: {
base: 123,
},
},
},
};
Properties
Name | Type | Description |
---|---|---|
date | IResolvable | Date | The options for an axis with a date field. |
numeric | IResolvable | Numeric | The options for an axis with a numeric field. |
dateAxisOptions?
Type:
IResolvable
|
Date
(optional)
The options for an axis with a date field.
numericAxisOptions?
Type:
IResolvable
|
Numeric
(optional)
The options for an axis with a numeric field.