Ej1 api migration in React Heatmap chart component
17 Mar 20255 minutes to read
This article describes the API migration process of heat map component from Essential® JS 1 to Essential® JS 2.
Members
Behavior | API in Essential® JS 1 | API in Essential® JS 2 |
---|---|---|
Specifies the width of the heat map |
Property: width`
|
Property: width`<HeatMapComponent id='heatmap-container' width={'300px'}>`</HeatMapComponent>`
|
Specifies the height of the heat map |
Property: height`
|
Property: height`<HeatMapComponent id='heatmap-container' height={'300px'}>`
|
Enables or disables tooltip of heat map |
Property: showtooltip`
|
Property: showTooltip`<HeatMapComponent id='heatmap-container' showTooltip = { true }>`
|
Defines the tooltip that should be shown when the mouse hovers over cells. |
Property: toolTipSettings.templateId`<EJ.HeatMap id="HeatMap" toolTipSettings={toolTipSettings}>`
|
Property: tooltipRender`<HeatMapComponent id='heatmap-container' tooltipRender={tooltipTemplate}>`
|
Specifies the source data of the heat map. |
Property: itemsSource`<EJ.HeatMap id="HeatMap" itemsSource={itemsSource}>`
|
Property: dataSource`<HeatMapComponent id='heatmap-container' dataSource={dataSource}>`
|
Specifies whether the cell content can be visible or not. |
Property: heatmapCell.showContent`<EJ.HeatMap id="HeatMap" heatmapCell={heatmapCell}>`
|
Property: cellSettings.showLabel `<HeatMapComponent id='heatmap-container' cellSettings={cellSettings}>`
|
Specifies the color of the heat map column data. |
Property: colorMappingCollection.color`
|
Property: paletteSettings.palette.color`<HeatMapComponent id='heatmap-container' paletteSettings={paletteSettings}>`
|
Specifies the color values of the heat map column data. |
Property: colorMappingCollection.value`
|
Property: paletteSettings.palette.value`<HeatMapComponent id='heatmap-container' paletteSettings={paletteSettings}>`
|
Specifies the label text of the heat map color. |
Property: colorMappingCollection.label.text`
|
Property: paletteSettings.palette.label`<HeatMapComponent id='heatmap-container' paletteSettings={paletteSettings}>`
|
Specifies the style of the heat map color label. |
Property: colorMappingCollection.label.bold Property: colorMappingCollection.label.italic`
|
Property: legendSettings.textStyle.fontStyle`<HeatMapComponent id='heatmap-container' legendSettings={legendSettings}>`
|
Specifies the font size of the heat map label. |
Property: colorMappingCollection.label.fontSize`
|
Property: legendSettings.textStyle.size`<HeatMapComponent id='heatmap-container' legendSettings={legendSettings}>`
|
Specifies the font family of the heat map label. |
Property: colorMappingCollection.label.fontFamily`
|
Property: legendSettings.textStyle.fontFamily`<HeatMapComponent id='heatmap-container' legendSettings={legendSettings}>`
|
Specifies the font color of the heat map label. |
Property: colorMappingCollection.label.fontColor`
|
Property: legendSettings.textStyle.fontFamily`<HeatMapComponent id='heatmap-container' legendSettings={legendSettings}>`
|
Specifies the mapping name of the column. |
Property: itemsMapping.column.propertyName`<EJ.HeatMap itemsMapping={itemsMapping}>`
|
Property: dataSource.yDataMapping`<HeatMapComponent id='heatmap-container' dataSource={dataSource}>`
|
Specifies the mapping name of the row. |
Property: itemsMapping.row.propertyName`<EJ.HeatMap itemsMapping={itemsMapping}>`
|
Property: dataSource.xDataMapping`<HeatMapComponent id='heatmap-container' dataSource={dataSource}>`
|
Specifies the mapping name of the row.</b> |
Property: itemsMapping.value.displayName`<EJ.HeatMap itemsMapping={itemsMapping}>`
|
Property: dataSource.valueMapping`<HeatMapComponent id='heatmap-container' dataSource={dataSource}>`
|
Events
Behavior | API in Essential® JS 1 | API in Essential® JS 2 |
---|---|---|
Triggered when the cell get clicked. |
Property: cellSelected`
|
Property: cellClick`<HeatMapComponent id='heatmap-container' cellClick={this.cellClick.bind(this)}>`
|