interface ReferenceLineProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.ReferenceLineProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.ReferenceLineProperty | 
  Python | aws_cdk.aws_quicksight.CfnAnalysis.ReferenceLineProperty | 
  TypeScript  | @aws-cdk/aws-quicksight » CfnAnalysis » ReferenceLineProperty | 
The reference line visual display options.
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 referenceLineProperty: quicksight.CfnAnalysis.ReferenceLineProperty = {
  dataConfiguration: {
    axisBinding: 'axisBinding',
    dynamicConfiguration: {
      calculation: {
        percentileAggregation: {
          percentileValue: 123,
        },
        simpleNumericalAggregation: 'simpleNumericalAggregation',
      },
      column: {
        columnName: 'columnName',
        dataSetIdentifier: 'dataSetIdentifier',
      },
      measureAggregationFunction: {
        categoricalAggregationFunction: 'categoricalAggregationFunction',
        dateAggregationFunction: 'dateAggregationFunction',
        numericalAggregationFunction: {
          percentileAggregation: {
            percentileValue: 123,
          },
          simpleNumericalAggregation: 'simpleNumericalAggregation',
        },
      },
    },
    staticConfiguration: {
      value: 123,
    },
  },
  // the properties below are optional
  labelConfiguration: {
    customLabelConfiguration: {
      customLabel: 'customLabel',
    },
    fontColor: 'fontColor',
    fontConfiguration: {
      fontColor: 'fontColor',
      fontDecoration: 'fontDecoration',
      fontSize: {
        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: {
              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: {
              symbol: 'symbol',
              visibility: 'visibility',
            },
          },
          suffix: 'suffix',
        },
        percentageDisplayFormatConfiguration: {
          decimalPlacesConfiguration: {
            decimalPlaces: 123,
          },
          negativeValueConfiguration: {
            displayMode: 'displayMode',
          },
          nullValueFormatConfiguration: {
            nullString: 'nullString',
          },
          prefix: 'prefix',
          separatorConfiguration: {
            decimalSeparator: 'decimalSeparator',
            thousandsSeparator: {
              symbol: 'symbol',
              visibility: 'visibility',
            },
          },
          suffix: 'suffix',
        },
      },
      relativePosition: 'relativePosition',
    },
    verticalPosition: 'verticalPosition',
  },
  status: 'status',
  styleConfiguration: {
    color: 'color',
    pattern: 'pattern',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| data | IResolvable | Reference | The data configuration of the reference line. | 
| label | IResolvable | Reference | The label configuration of the reference line. | 
| status? | string | The status of the reference line. Choose one of the following options:. | 
| style | IResolvable | Reference | The style configuration of the reference line. | 
dataConfiguration
Type:
IResolvable | Reference
The data configuration of the reference line.
labelConfiguration?
Type:
IResolvable | Reference
(optional)
The label configuration of the reference line.
status?
Type:
string
(optional)
The status of the reference line. Choose one of the following options:.
ENABLEDISABLE
styleConfiguration?
Type:
IResolvable | Reference
(optional)
The style configuration of the reference line.

 .NET
 Java
 Python
 TypeScript