table
table copied to clipboard
Rendered rows never goes past 100 despite the number of rows in data
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 in data method of table, there is a property named rows, cols, inside this you can specify the length you need