interface ReferenceLineLabelConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.ReferenceLineLabelConfigurationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_ReferenceLineLabelConfigurationProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.ReferenceLineLabelConfigurationProperty | 
|  Python | aws_cdk.aws_quicksight.CfnAnalysis.ReferenceLineLabelConfigurationProperty | 
|  TypeScript | aws-cdk-lib»aws_quicksight»CfnAnalysis»ReferenceLineLabelConfigurationProperty | 
The label configuration of a reference line.
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 referenceLineLabelConfigurationProperty: quicksight.CfnAnalysis.ReferenceLineLabelConfigurationProperty = {
  customLabelConfiguration: {
    customLabel: 'customLabel',
  },
  fontColor: 'fontColor',
  fontConfiguration: {
    fontColor: 'fontColor',
    fontDecoration: 'fontDecoration',
    fontFamily: 'fontFamily',
    fontSize: {
      absolute: 'absolute',
      relative: 'relative',
    },
    fontStyle: 'fontStyle',
    fontWeight: {
      name: 'name',
    },
  },
  horizontalPosition: 'horizontalPosition',
  valueLabelConfiguration: {
    formatConfiguration: {
      currencyDisplayFormatConfiguration: {
        decimalPlacesConfiguration: {
          decimalPlaces: 123,
        },
        negativeValueConfiguration: {
          displayMode: 'displayMode',
        },
        nullValueFormatConfiguration: {
          nullString: 'nullString',
        },
        numberScale: 'numberScale',
        prefix: 'prefix',
        separatorConfiguration: {
          decimalSeparator: 'decimalSeparator',
          thousandsSeparator: {
            groupingStyle: 'groupingStyle',
            symbol: 'symbol',
            visibility: 'visibility',
          },
        },
        suffix: 'suffix',
        symbol: 'symbol',
      },
      numberDisplayFormatConfiguration: {
        decimalPlacesConfiguration: {
          decimalPlaces: 123,
        },
        negativeValueConfiguration: {
          displayMode: 'displayMode',
        },
        nullValueFormatConfiguration: {
          nullString: 'nullString',
        },
        numberScale: 'numberScale',
        prefix: 'prefix',
        separatorConfiguration: {
          decimalSeparator: 'decimalSeparator',
          thousandsSeparator: {
            groupingStyle: 'groupingStyle',
            symbol: 'symbol',
            visibility: 'visibility',
          },
        },
        suffix: 'suffix',
      },
      percentageDisplayFormatConfiguration: {
        decimalPlacesConfiguration: {
          decimalPlaces: 123,
        },
        negativeValueConfiguration: {
          displayMode: 'displayMode',
        },
        nullValueFormatConfiguration: {
          nullString: 'nullString',
        },
        prefix: 'prefix',
        separatorConfiguration: {
          decimalSeparator: 'decimalSeparator',
          thousandsSeparator: {
            groupingStyle: 'groupingStyle',
            symbol: 'symbol',
            visibility: 'visibility',
          },
        },
        suffix: 'suffix',
      },
    },
    relativePosition: 'relativePosition',
  },
  verticalPosition: 'verticalPosition',
};
Properties
| Name | Type | Description | 
|---|---|---|
| custom | IResolvable | Reference | The custom label configuration of the label in a reference line. | 
| font | string | The font color configuration of the label in a reference line. | 
| font | IResolvable | Font | The font configuration of the label in a reference line. | 
| horizontal | string | The horizontal position configuration of the label in a reference line. Choose one of the following options:. | 
| value | IResolvable | Reference | The value label configuration of the label in a reference line. | 
| vertical | string | The vertical position configuration of the label in a reference line. Choose one of the following options:. | 
customLabelConfiguration?
Type:
IResolvable | Reference
(optional)
The custom label configuration of the label in a reference line.
fontColor?
Type:
string
(optional)
The font color configuration of the label in a reference line.
fontConfiguration?
Type:
IResolvable | Font
(optional)
The font configuration of the label in a reference line.
horizontalPosition?
Type:
string
(optional)
The horizontal position configuration of the label in a reference line. Choose one of the following options:.
- LEFT
- CENTER
- RIGHT
valueLabelConfiguration?
Type:
IResolvable | Reference
(optional)
The value label configuration of the label in a reference line.
verticalPosition?
Type:
string
(optional)
The vertical position configuration of the label in a reference line. Choose one of the following options:.
- ABOVE
- BELOW
