Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
dsills22 opened this issue Jul 12, 2024 · 1 comment
Open

Comments

@dsills22
Copy link

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();
@ravikumarsankar
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants