interface YAxisOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.YAxisOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_YAxisOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.YAxisOptionsProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.YAxisOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const yAxisOptionsProperty: quicksight_mixins.CfnAnalysisPropsMixin.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