Class CellDoubleClickEventArgs
Defines the CellDoubleClickEventArgs.
Inheritance
Namespace: Syncfusion.Blazor.HeatMap
Assembly: Syncfusion.Blazor.dll
Syntax
public class CellDoubleClickEventArgs : Object
Constructors
CellDoubleClickEventArgs()
Declaration
public CellDoubleClickEventArgs()
Properties
CellElement
Returns the current element over which the double click action is performed.
Declaration
public Nullable<ElementReference> CellElement { get; }
Property Value
Type | Description |
---|---|
System.Nullable<Microsoft.AspNetCore.Components.ElementReference> | Returns the Microsoft.AspNetCore.Components.ElementReference object representing the current element over which the double click action is performed. |
Remarks
This property returns the Microsoft.AspNetCore.Components.ElementReference object on which the double click action is performed.
Value
Returns the value bound to the HeatMap cell over which the double click is performed.
Declaration
public double Value { get; }
Property Value
Type | Description |
---|---|
System.Double | Returns a double value representing the value bound to the HeatMap cell. |
Remarks
Using this property, you can know about the value of the HeatMap cell over which the double click is performed.
X
Returns the x value of the HeatMap cell element, which represents the element's horizontal position on the web page.
Declaration
public string X { get; }
Property Value
Type | Description |
---|---|
System.String | Returns the string value representing the x value of the HeatMap element. |
Remarks
Using this property, you can find out the horizontal position value of the element over which the double click is performed.
XLabel
Returns the x-axis label of the HeatMap cell over which the double click was performed.
Declaration
public string XLabel { get; }
Property Value
Type | Description |
---|---|
System.String | Returns the string value representing the x-axis label of the HeatMap cell. |
Remarks
Using this property, you can know about the x-axis label of the HeatMap cell over which the double click is performed.
Y
Returns the y value of the HeatMap cell element, which represents the element's vertical position on the web page.
Declaration
public string Y { get; }
Property Value
Type | Description |
---|---|
System.String | Returns the string value representing the y value of the HeatMap element. |
Remarks
Using this property, you can find out the vertical position value of the element over which the double click is performed.
YLabel
Returns the y-axis label of the HeatMap cell over which the double click was performed.
Declaration
public string YLabel { get; }
Property Value
Type | Description |
---|---|
System.String | Returns the string value representing the y-axis label of the HeatMap cell. |
Remarks
Using this property, you can know about the y-axis label of the HeatMap cell over which the double click is performed.