Interface CfnDashboard.IColumnTooltipItemProperty
The tooltip item for the columns that are not part of a field well.
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IColumnTooltipItemProperty
Syntax (vb)
Public Interface IColumnTooltipItemProperty
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.AWS.QuickSight;
var columnTooltipItemProperty = new ColumnTooltipItemProperty {
Column = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
// the properties below are optional
Aggregation = new AggregationFunctionProperty {
AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
SimpleAttributeAggregation = "simpleAttributeAggregation",
ValueForMultipleValues = "valueForMultipleValues"
},
CategoricalAggregationFunction = "categoricalAggregationFunction",
DateAggregationFunction = "dateAggregationFunction",
NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
PercentileAggregation = new PercentileAggregationProperty {
PercentileValue = 123
},
SimpleNumericalAggregation = "simpleNumericalAggregation"
}
},
Label = "label",
TooltipTarget = "tooltipTarget",
Visibility = "visibility"
};
Synopsis
Properties
Aggregation | The aggregation function of the column tooltip item. |
Column | The target column of the tooltip item. |
Label | The label of the tooltip item. |
Tooltip |
Determines the target of the column tooltip item in a combo chart visual. |
Visibility | The visibility of the tooltip item. |
Properties
Aggregation
The aggregation function of the column tooltip item.
virtual object Aggregation { get; }
Property Value
System.
Remarks
Column
The target column of the tooltip item.
object Column { get; }
Property Value
System.
Remarks
Label
The label of the tooltip item.
virtual string Label { get; }
Property Value
System.
Remarks
TooltipTarget
Determines the target of the column tooltip item in a combo chart visual.
virtual string TooltipTarget { get; }
Property Value
System.
Remarks
Visibility
The visibility of the tooltip item.
virtual string Visibility { get; }
Property Value
System.