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
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. |
CustomItems
A collection of custom tooltip items, containing instances of RVTooltipItem. These items allow users to define their own logic to be executed when the items are clicked in the tooltip.
Declaration
public List<RVTooltipItem> CustomItems { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<RVTooltipItem> | A list of custom items to be shown in the chart's tooltip and handle user-defined logic. |
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. |