aws-cdk-lib.aws_quicksight.CfnTemplate.AxisTickLabelOptionsProperty

interface AxisTickLabelOptionsProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnTemplate.AxisTickLabelOptionsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_AxisTickLabelOptionsProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnTemplate.AxisTickLabelOptionsProperty
Pythonaws_cdk.aws_quicksight.CfnTemplate.AxisTickLabelOptionsProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnTemplate » AxisTickLabelOptionsProperty

The tick label options of an axis.

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';
const axisTickLabelOptionsProperty: quicksight.CfnTemplate.AxisTickLabelOptionsProperty = {
  labelOptions: {
    customLabel: 'customLabel',
    fontConfiguration: {
      fontColor: 'fontColor',
      fontDecoration: 'fontDecoration',
      fontSize: {
        relative: 'relative',
      },
      fontStyle: 'fontStyle',
      fontWeight: {
        name: 'name',
      },
    },
    visibility: 'visibility',
  },
  rotationAngle: 123,
};

Properties

NameTypeDescription
labelOptions?IResolvable | LabelOptionsPropertyDetermines whether or not the axis ticks are visible.
rotationAngle?numberThe rotation angle of the axis tick labels.

labelOptions?

Type: IResolvable | LabelOptionsProperty (optional)

Determines whether or not the axis ticks are visible.


rotationAngle?

Type: number (optional)

The rotation angle of the axis tick labels.