Class VisualizationClickedEventArgs
The arguments object passed to Visualization
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
csharp
Properties
Cell
The clicked cell
Declaration
public RVDataCell Cell { get; }
csharp
Property Value
Type | Description |
---|---|
Reveal. |
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; }
csharp
Property Value
Type | Description |
---|---|
Reveal. |
The row containing the clicked cell |
Visualization
The visualization containing the clicked cell
Declaration
public RVVisualization Visualization { get; }
csharp
Property Value
Type | Description |
---|---|
RVVisualization | The visualization containing the clicked cell |