interface FieldTooltipItemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.FieldTooltipItemProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_FieldTooltipItemProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.FieldTooltipItemProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.FieldTooltipItemProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » FieldTooltipItemProperty |
The tooltip item for the fields.
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 fieldTooltipItemProperty: quicksight_mixins.CfnDashboardPropsMixin.FieldTooltipItemProperty = {
fieldId: 'fieldId',
label: 'label',
tooltipTarget: 'tooltipTarget',
visibility: 'visibility',
};
Properties
| Name | Type | Description |
|---|---|---|
| field | string | The unique ID of the field that is targeted by the tooltip. |
| label? | string | The label of the tooltip item. |
| tooltip | string | Determines the target of the field tooltip item in a combo chart visual. |
| visibility? | string | The visibility of the tooltip item. |
fieldId?
Type:
string
(optional)
The unique ID of the field that is targeted by the tooltip.
label?
Type:
string
(optional)
The label of the tooltip item.
tooltipTarget?
Type:
string
(optional)
Determines the target of the field tooltip item in a combo chart visual.
visibility?
Type:
string
(optional)
The visibility of the tooltip item.

.NET
Go
Java
Python
TypeScript