Class TooltipEventArgs
Specifies the TooltipEventArgs for the heatmap component.
Inheritance
System.Object
TooltipEventArgs
Namespace: Syncfusion.Blazor.HeatMap
Assembly: Syncfusion.Blazor.dll
Syntax
public class TooltipEventArgs : Object
Constructors
TooltipEventArgs()
Declaration
public TooltipEventArgs()
Properties
Cancel
Defines the event cancel status.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Content
Defines tooltip text value.
Declaration
public string[] Content { get; set; }
Property Value
Type | Description |
---|---|
System.String[] | Accepts an array of string value. |
Value
Defines current hover cell value.
Declaration
public double Value { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
XLabel
Defines x-axis label for current hover cell.
Declaration
public string XLabel { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
XValue
Defines x-axis value for current hover cell.
Declaration
public string XValue { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
YLabel
Defines y-axis label for current hover cell.
Declaration
public string YLabel { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
YValue
Defines y-axis value for current hover cell.
Declaration
public string YValue { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |