Class TooltipItemClickEventArgs
The arguments object passed to Click event with the information about the visualization selected and the data cell, and row.
Inheritance
System.Object
System.EventArgs
TooltipItemClickEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Reveal.Sdk
Assembly: Reveal.UI.Sdk.dll
Syntax
public class TooltipItemClickEventArgs : EventArgs
Properties
Cell
The clicked tooltip item's data cell
Declaration
public RVDataCell Cell { get; }
Property Value
Type | Description |
---|---|
Reveal.Sdk.RVDataCell | The clicked tooltip item's data cell |
Row
The clicked tooltip item's data row, can be used to get the values of other cells in the same row, for example to get the CustomerId even if the tooltip item clicked contains "Sales Amount".
Declaration
public RVDataCell[] Row { get; }
Property Value
Type | Description |
---|---|
Reveal.Sdk.RVDataCell[] | The clicked tooltip item's data row |
Visualization
The visualization containing the clicked tooltip item
Declaration
public RVVisualization Visualization { get; }
Property Value
Type | Description |
---|---|
RVVisualization | The visualization containing the clicked tooltip item |