table icon indicating copy to clipboard operation
table copied to clipboard

Rendered rows never goes past 100 despite the number of rows in data

Open dsills22 opened this issue 1 year ago • 1 comments

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();

dsills22 avatar Jul 12 '24 20:07 dsills22

@dsills22 in data method of table, there is a property named rows, cols, inside this you can specify the length you need

ravikumarsankar avatar Jul 16 '24 11:07 ravikumarsankar