Show / Hide Table of Contents

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 CfnDashboard.IColumnTooltipItemProperty
Syntax (vb)
Public Interface CfnDashboard.IColumnTooltipItemProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-columntooltipitem.html

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.

TooltipTarget

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.

object? Aggregation { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-columntooltipitem.html#cfn-quicksight-dashboard-columntooltipitem-aggregation

Column

The target column of the tooltip item.

object Column { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-columntooltipitem.html#cfn-quicksight-dashboard-columntooltipitem-column

Label

The label of the tooltip item.

string? Label { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-columntooltipitem.html#cfn-quicksight-dashboard-columntooltipitem-label

TooltipTarget

Determines the target of the column tooltip item in a combo chart visual.

string? TooltipTarget { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-columntooltipitem.html#cfn-quicksight-dashboard-columntooltipitem-tooltiptarget

Visibility

The visibility of the tooltip item.

string? Visibility { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-columntooltipitem.html#cfn-quicksight-dashboard-columntooltipitem-visibility

Back to top Generated by DocFX