interface FieldBasedTooltipProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.FieldBasedTooltipProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.FieldBasedTooltipProperty | 
|  Python | aws_cdk.aws_quicksight.CfnAnalysis.FieldBasedTooltipProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnAnalysis»FieldBasedTooltipProperty | 
The setup for the detailed tooltip.
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 fieldBasedTooltipProperty: quicksight.CfnAnalysis.FieldBasedTooltipProperty = {
  aggregationVisibility: 'aggregationVisibility',
  tooltipFields: [{
    columnTooltipItem: {
      column: {
        columnName: 'columnName',
        dataSetIdentifier: 'dataSetIdentifier',
      },
      // the properties below are optional
      aggregation: {
        categoricalAggregationFunction: 'categoricalAggregationFunction',
        dateAggregationFunction: 'dateAggregationFunction',
        numericalAggregationFunction: {
          percentileAggregation: {
            percentileValue: 123,
          },
          simpleNumericalAggregation: 'simpleNumericalAggregation',
        },
      },
      label: 'label',
      visibility: 'visibility',
    },
    fieldTooltipItem: {
      fieldId: 'fieldId',
      // the properties below are optional
      label: 'label',
      visibility: 'visibility',
    },
  }],
  tooltipTitleType: 'tooltipTitleType',
};
Properties
| Name | Type | Description | 
|---|---|---|
| aggregation | string | The visibility of Show aggregations. | 
| tooltip | IResolvable | IResolvable | Tooltip[] | The fields configuration in the tooltip. | 
| tooltip | string | The type for the >tooltip title. Choose one of the following options:. | 
aggregationVisibility?
Type:
string
(optional)
The visibility of Show aggregations .
tooltipFields?
Type:
IResolvable | IResolvable | Tooltip[]
(optional)
The fields configuration in the tooltip.
tooltipTitleType?
Type:
string
(optional)
The type for the >tooltip title. Choose one of the following options:.
- NONE: Doesn't use the primary value as the title.
- PRIMARY_VALUE: Uses primary value as the title.
