Hi,
The autoColumnSize documentation only specifies a way to limit the number of columns considered. However, I do not see any way of limiting the rows.
Take this example where I have 1000 rows and I do activate the plugin. It roughly takes 250ms for computation.
Now take a look here, where I have 10 000 rows. It roughly take 2500ms (logical).
I am working with big grids and I want to also limit the number of rows considered for columns width computation. The methods are built with this possibility. By default, all rows are considered but you can give them a row limit :
calculateAllColumnsWidth(rowRange = { from: 0, to: this.hot.countRows() - 1 }) {
But it does not seem possible to control it since the onAfterLoadData
hook does not give any option to these methods. Have I missed something or should I open a feature request regarding this?
Regards,