Class CellClickEventArgs
Defines the CellClickEventArgs.
Inheritance
Namespace: Syncfusion.Blazor.HeatMap
Assembly: Syncfusion.Blazor.dll
Syntax
public class CellClickEventArgs : Object
Constructors
CellClickEventArgs()
Declaration
public CellClickEventArgs()
Properties
Cancel
Defines the event cancel status.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
CellElement
Defines current clicked cell element.
Declaration
public Nullable<ElementReference> CellElement { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<Microsoft.AspNetCore.Components.ElementReference> | An Microsoft.AspNetCore.Components.ElementReference object that represents the current clicked cell element. |
HasRightClicked
Specifies whether a right mouse click action is performed on the HeatMap cell.
Declaration
public bool HasRightClicked { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Remarks
This property is used to determine whether a right mouse click was performed on a HeatMap cell.
Value
Defines current clicked cell value.
Declaration
public double Value { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts a double value that represents the value of the current clicked cell. |
X
Specifies X value.
Declaration
public string X { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
XLabel
Defines x-axis label for current clicked cell.
Declaration
public string XLabel { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
XValue
Defines x-axis value for current clicked cell.
Declaration
public string XValue { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Y
Specifies Y value.
Declaration
public string Y { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
YLabel
Defines y-axis label for current clicked cell.
Declaration
public string YLabel { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
YValue
Defines y-axis value for current clicked cell.
Declaration
public string YValue { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |