Show / Hide Table of Contents

Class CfnAnalysis.TooltipOptionsProperty

The display options for the visual tooltip.

Inheritance
System.Object
CfnAnalysis.TooltipOptionsProperty
Implements
CfnAnalysis.ITooltipOptionsProperty
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public class TooltipOptionsProperty : Object, CfnAnalysis.ITooltipOptionsProperty
Syntax (vb)
Public Class TooltipOptionsProperty
    Inherits Object
    Implements CfnAnalysis.ITooltipOptionsProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-tooltipoptions.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 tooltipOptionsProperty = new TooltipOptionsProperty {
    FieldBasedTooltip = new FieldBasedTooltipProperty {
        AggregationVisibility = "aggregationVisibility",
        TooltipFields = new [] { new TooltipItemProperty {
            ColumnTooltipItem = new ColumnTooltipItemProperty {
                Column = new ColumnIdentifierProperty {
                    ColumnName = "columnName",
                    DataSetIdentifier = "dataSetIdentifier"
                },

                // the properties below are optional
                Aggregation = new AggregationFunctionProperty {
                    CategoricalAggregationFunction = "categoricalAggregationFunction",
                    DateAggregationFunction = "dateAggregationFunction",
                    NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
                        PercentileAggregation = new PercentileAggregationProperty {
                            PercentileValue = 123
                        },
                        SimpleNumericalAggregation = "simpleNumericalAggregation"
                    }
                },
                Label = "label",
                Visibility = "visibility"
            },
            FieldTooltipItem = new FieldTooltipItemProperty {
                FieldId = "fieldId",

                // the properties below are optional
                Label = "label",
                Visibility = "visibility"
            }
        } },
        TooltipTitleType = "tooltipTitleType"
    },
    SelectedTooltipType = "selectedTooltipType",
    TooltipVisibility = "tooltipVisibility"
};

Synopsis

Constructors

TooltipOptionsProperty()

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.

Constructors

TooltipOptionsProperty()

public TooltipOptionsProperty()

Properties

FieldBasedTooltip

The setup for the detailed tooltip.

public object FieldBasedTooltip { get; set; }
Property Value

System.Object

Remarks

The tooltip setup is always saved. The display type is decided based on the tooltip type.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-tooltipoptions.html#cfn-quicksight-analysis-tooltipoptions-fieldbasedtooltip

SelectedTooltipType

The selected type for the tooltip. Choose one of the following options:.

public string SelectedTooltipType { get; set; }
Property Value

System.String

Remarks

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-tooltipoptions.html#cfn-quicksight-analysis-tooltipoptions-selectedtooltiptype

    TooltipVisibility

    Determines whether or not the tooltip is visible.

    public string TooltipVisibility { get; set; }
    Property Value

    System.String

    Remarks

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-tooltipoptions.html#cfn-quicksight-analysis-tooltipoptions-tooltipvisibility

    Implements

    CfnAnalysis.ITooltipOptionsProperty
    Back to top Generated by DocFX