I always just get 100 rows regardless of my data size after rendering. I see that renderer has a default of 100 rows set. I currently have to do the following to get the rows to scale with my data:
this.spreadsheet.data().rows.len = rowLen;
this.spreadsheet._renderer.rows(rowLen);
this.spreadsheet.data({cells: myData})
this.spreadsheet.render();
I always just get 100 rows regardless of my data size after rendering. I see that renderer has a default of 100 rows set. I currently have to do the following to get the rows to scale with my data: