interface AxisLabelReferenceOptionsProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.AxisLabelReferenceOptionsProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.AxisLabelReferenceOptionsProperty | 
|  Python | aws_cdk.aws_quicksight.CfnDashboard.AxisLabelReferenceOptionsProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnDashboard»AxisLabelReferenceOptionsProperty | 
The reference that specifies where the axis label is applied to.
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';
const axisLabelReferenceOptionsProperty: quicksight.CfnDashboard.AxisLabelReferenceOptionsProperty = {
  column: {
    columnName: 'columnName',
    dataSetIdentifier: 'dataSetIdentifier',
  },
  fieldId: 'fieldId',
};
Properties
| Name | Type | Description | 
|---|---|---|
| column | IResolvable | Column | The column that the axis label is targeted to. | 
| field | string | The field that the axis label is targeted to. | 
column
Type:
IResolvable | Column
The column that the axis label is targeted to.
fieldId
Type:
string
The field that the axis label is targeted to.
