Interface CfnDashboardPropsMixin.ITooltipOptionsProperty
The display options for the visual tooltip.
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnDashboardPropsMixin.ITooltipOptionsProperty
Syntax (vb)
Public Interface CfnDashboardPropsMixin.ITooltipOptionsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins;
var tooltipOptionsProperty = new TooltipOptionsProperty {
FieldBasedTooltip = new FieldBasedTooltipProperty {
AggregationVisibility = "aggregationVisibility",
TooltipFields = new [] { new TooltipItemProperty {
ColumnTooltipItem = new ColumnTooltipItemProperty {
Aggregation = new AggregationFunctionProperty {
AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
SimpleAttributeAggregation = "simpleAttributeAggregation",
ValueForMultipleValues = "valueForMultipleValues"
},
CategoricalAggregationFunction = "categoricalAggregationFunction",
DateAggregationFunction = "dateAggregationFunction",
NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
PercentileAggregation = new PercentileAggregationProperty {
PercentileValue = 123
},
SimpleNumericalAggregation = "simpleNumericalAggregation"
}
},
Column = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
Label = "label",
TooltipTarget = "tooltipTarget",
Visibility = "visibility"
},
FieldTooltipItem = new FieldTooltipItemProperty {
FieldId = "fieldId",
Label = "label",
TooltipTarget = "tooltipTarget",
Visibility = "visibility"
}
} },
TooltipTitleType = "tooltipTitleType"
},
SelectedTooltipType = "selectedTooltipType",
TooltipVisibility = "tooltipVisibility"
};
Synopsis
Properties
| FieldBasedTooltip | The setup for the detailed tooltip. |
| SelectedTooltipType | The selected type for the tooltip. Choose one of the following options:. |
| TooltipVisibility | Determines whether or not the tooltip is visible. |
Properties
FieldBasedTooltip
The setup for the detailed tooltip.
object? FieldBasedTooltip { get; }
Property Value
Remarks
The tooltip setup is always saved. The display type is decided based on the tooltip type.
Type union: either IResolvable or CfnDashboardPropsMixin.IFieldBasedTooltipProperty
SelectedTooltipType
The selected type for the tooltip. Choose one of the following options:.
string? SelectedTooltipType { get; }
Property Value
Remarks
TooltipVisibility
Determines whether or not the tooltip is visible.
string? TooltipVisibility { get; }