interface FieldBasedTooltipProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.FieldBasedTooltipProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_FieldBasedTooltipProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.FieldBasedTooltipProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.FieldBasedTooltipProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const fieldBasedTooltipProperty: quicksight_mixins.CfnDashboardPropsMixin.FieldBasedTooltipProperty = {
aggregationVisibility: 'aggregationVisibility',
tooltipFields: [{
columnTooltipItem: {
aggregation: {
attributeAggregationFunction: {
simpleAttributeAggregation: 'simpleAttributeAggregation',
valueForMultipleValues: 'valueForMultipleValues',
},
categoricalAggregationFunction: 'categoricalAggregationFunction',
dateAggregationFunction: 'dateAggregationFunction',
numericalAggregationFunction: {
percentileAggregation: {
percentileValue: 123,
},
simpleNumericalAggregation: 'simpleNumericalAggregation',
},
},
column: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
label: 'label',
tooltipTarget: 'tooltipTarget',
visibility: 'visibility',
},
fieldTooltipItem: {
fieldId: 'fieldId',
label: 'label',
tooltipTarget: 'tooltipTarget',
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.

.NET
Go
Java
Python
TypeScript