interface YAxisOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDashboardPropsMixin.YAxisOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDashboardPropsMixin_YAxisOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDashboardPropsMixin.YAxisOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDashboardPropsMixin.YAxisOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDashboardPropsMixin » YAxisOptionsProperty |
The options that are available for a single Y axis in a chart.
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/cfn-property-mixins';
const yAxisOptionsProperty: quicksight.CfnDashboardPropsMixin.YAxisOptionsProperty = {
yAxis: 'yAxis',
};
Properties
| Name | Type | Description |
|---|---|---|
| y | string | The Y axis type to be used in the chart. |
yAxis?
Type:
string
(optional)
The Y axis type to be used in the chart.
If you choose PRIMARY_Y_AXIS , the primary Y Axis is located on the leftmost vertical axis of the chart.

.NET
Go
Java
Python
TypeScript