Class HeatMapCellRenderEventArgs
Provides information about the CellRendering event callback, including the cell value, height, x-axis label, and y-axis label of the Heatmap cell currently being rendered.
Inheritance
Namespace: Syncfusion.Blazor.HeatMap
Assembly: Syncfusion.Blazor.dll
Syntax
public class HeatMapCellRenderEventArgs : Object
Constructors
HeatMapCellRenderEventArgs()
Declaration
public HeatMapCellRenderEventArgs()
Properties
BorderColor
Gets or sets the border color of the HeatMap cell that is currently being rendered.
Declaration
public string BorderColor { get; set; }
Property Value
Type | Description |
---|---|
System.String | The value can be a string representation of a color in various formats, such as color name, hexadecimal value, RGBA value, RGB value or HSL value. |
CellColor
Gets or sets the background color of the Heatmap cell currently being rendered.
Declaration
public string CellColor { get; set; }
Property Value
Type | Description |
---|---|
System.String | The background color of the Heatmap cell. During cell rendering, this property is used to set the background color of the current cell. |
CellValue
Gets or sets the cell value of the Heatmap cell currently being rendered.
Declaration
public string CellValue { get; set; }
Property Value
Type | Description |
---|---|
System.String | The value of the cell being rendered. This property can be used to read or modify the cell value during the rendering process. |
FontSize
Gets or sets the font size of the HeatMap cell that is currently being rendered.
Declaration
public string FontSize { get; set; }
Property Value
Type | Description |
---|---|
System.String | The value can be a string that represents a font size in different formats, such as percentage, px, pt, rem, or em. |
Height
Gets the height of the Heatmap cell currently being rendered, measured in pixels.
Declaration
public double Height { get; }
Property Value
Type | Description |
---|---|
System.Double | The height of the cell in pixels. |
Remarks
This property is set during the rendering of the Heatmap component and represents the height of the current cell being rendered.
Width
Gets the width of the Heatmap cell currently being rendered, measured in pixels.
Declaration
public double Width { get; }
Property Value
Type | Description |
---|---|
System.Double | The width of the cell in pixels. |
Remarks
This property is set during the rendering of the Heatmap component and represents the width of the current cell being rendered.
XLabel
Gets the x-axis label of the Heatmap cell that is currently being rendered.
Declaration
public string XLabel { get; }
Property Value
Type | Description |
---|---|
System.String | The x-axis label name of the current cell being rendered during cell rendering. |
YLabel
Gets the y-axis label of the Heatmap cell that is currently being rendered.
Declaration
public string YLabel { get; }
Property Value
Type | Description |
---|---|
System.String | The y-axis label name of the current cell being rendered during cell rendering. |