Class TooltipShowingEventArgs

The arguments object passed to TooltipShowing event with the information about the visualization selected and the data a tooltip will be displayed for.

Inheritance
System.Object
TooltipShowingEventArgs
Namespace: Reveal.Sdk
Assembly: Reveal.UI.Sdk.dll
Syntax
public class TooltipShowingEventArgs : CancelEventArgs

Properties

Cell

The cell that tooltip would be displayed for.

Declaration
public RVDataCell Cell { get; }
Property Value
Type Description
Reveal.Sdk.RVDataCell

The cell that tooltip would be displayed for.

Row

The row containing the cell that needs tooltip displayed. This can be used to get the values of other cells in the same row, for example to get the CustomerId even if the cell clicked was "Sales Amount".

Declaration
public RVDataCell[] Row { get; }
Property Value
Type Description
Reveal.Sdk.RVDataCell[]

The row containing the cell that needs tooltip displayed for.

Visualization

The visualization for which the tooltip will be displayed for.

Declaration
public RVVisualization Visualization { get; }
Property Value
Type Description
RVVisualization

The visualization containing the tooltip cell for.