Class VisualizationClickedEventArgs
The arguments object passed to VisualizationDataPointClicked event with the information about the visualization selected and the location of the click. list of data sources.
Inheritance
System.Object
System.EventArgs
VisualizationClickedEventArgs
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 VisualizationClickedEventArgs : EventArgs
Properties
Cell
The clicked cell
Declaration
public RVDataCell Cell { get; }
Property Value
Type | Description |
---|---|
Reveal.Sdk.RVDataCell | The clicked cell |
Row
The row containing the clicked cell, 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 clicked cell |
Visualization
The visualization containing the clicked cell
Declaration
public RVVisualization Visualization { get; }
Property Value
Type | Description |
---|---|
RVVisualization | The visualization containing the clicked cell |