interface ChartAxisLabelOptionsProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.ChartAxisLabelOptionsProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.ChartAxisLabelOptionsProperty | 
|  Python | aws_cdk.aws_quicksight.CfnDashboard.ChartAxisLabelOptionsProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnDashboard»ChartAxisLabelOptionsProperty | 
The label options for an axis on a chart.
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 chartAxisLabelOptionsProperty: quicksight.CfnDashboard.ChartAxisLabelOptionsProperty = {
  axisLabelOptions: [{
    applyTo: {
      column: {
        columnName: 'columnName',
        dataSetIdentifier: 'dataSetIdentifier',
      },
      fieldId: 'fieldId',
    },
    customLabel: 'customLabel',
    fontConfiguration: {
      fontColor: 'fontColor',
      fontDecoration: 'fontDecoration',
      fontSize: {
        relative: 'relative',
      },
      fontStyle: 'fontStyle',
      fontWeight: {
        name: 'name',
      },
    },
  }],
  sortIconVisibility: 'sortIconVisibility',
  visibility: 'visibility',
};
Properties
| Name | Type | Description | 
|---|---|---|
| axis | IResolvable | IResolvable | Axis[] | The label options for a chart axis. | 
| sort | string | The visibility configuration of the sort icon on a chart's axis label. | 
| visibility? | string | The visibility of an axis label on a chart. Choose one of the following options:. | 
axisLabelOptions?
Type:
IResolvable | IResolvable | Axis[]
(optional)
The label options for a chart axis.
sortIconVisibility?
Type:
string
(optional)
The visibility configuration of the sort icon on a chart's axis label.
visibility?
Type:
string
(optional)
The visibility of an axis label on a chart. Choose one of the following options:.
- VISIBLE: Shows the axis.
- HIDDEN: Hides the axis.
