Class RVDataCell
Class representing a cell in the visualization data, includes column name, value and formatted value.
Inheritance
System.Object
RVDataCell
Namespace: Reveal.Sdk
Assembly: Infragistics.Reveal.SDK.Server.dll
Syntax
public class RVDataCell : Object
Properties
ColumnLabel
The label of the column this cell belongs to.
Declaration
public string ColumnLabel { get; }
Property Value
Type | Description |
---|---|
System.String | The label of the column this cell belongs to. |
ColumnName
The name of the column this cell belongs to.
Declaration
public string ColumnName { get; }
Property Value
Type | Description |
---|---|
System.String | The name of the column this cell belongs to. |
FormattedValue
The formatted value of the cell.
Declaration
public string FormattedValue { get; }
Property Value
Type | Description |
---|---|
System.String | The formatted value of the cell. |
Value
The value of the cell.
Declaration
public object Value { get; }
Property Value
Type | Description |
---|---|
System.Object | The value of the cell |