Row Freeze
Rows can be frozen either to the 'top' or to the 'bottom'. The feature is also known as pinned rows and floating rows. To freeze a row, you need to set therow.freeze property.
Example:
onRowInit(index, row) {
if (index < 3) {
row.freeze = true;
}
}
To freeze a row to the bottom, set the
row.freeze property to 'far'.
onRowInit(index, row) {
if (index > 2996) {
row.freeze = 'far';
}
}