interface ColumnTooltipItemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.ColumnTooltipItemProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_ColumnTooltipItemProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.ColumnTooltipItemProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.ColumnTooltipItemProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » ColumnTooltipItemProperty |
The tooltip item for the columns that are not part of a field well.
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 columnTooltipItemProperty: quicksight_mixins.CfnDashboardPropsMixin.ColumnTooltipItemProperty = {
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',
};
Properties
| Name | Type | Description |
|---|---|---|
| aggregation? | IResolvable | Aggregation | The aggregation function of the column tooltip item. |
| column? | IResolvable | Column | The target column of the tooltip item. |
| label? | string | The label of the tooltip item. |
| tooltip | string | Determines the target of the column tooltip item in a combo chart visual. |
| visibility? | string | The visibility of the tooltip item. |
aggregation?
Type:
IResolvable | Aggregation
(optional)
The aggregation function of the column tooltip item.
column?
Type:
IResolvable | Column
(optional)
The target column of the tooltip item.
label?
Type:
string
(optional)
The label of the tooltip item.
tooltipTarget?
Type:
string
(optional)
Determines the target of the column tooltip item in a combo chart visual.
visibility?
Type:
string
(optional)
The visibility of the tooltip item.

.NET
Go
Java
Python
TypeScript