How can I make startRows and startCols effective?

Tags: #<Tag:0x00007efc61d71838> #<Tag:0x00007efc61d715e0>

Now I need to develop a table with a fixed number of rows and columns, regardless of whether it is an empty table or contains data. I have set startRows and startCols , but once data is loaded into the table, startRows and startCols become ineffective. I have also checked the documentation and confirmed that it is designed this way. Is there any way to achieve my current requirement?

Hi @yaopeng1

This is the correct behavior, as you also mentioned. startRows/Cols are options designed only to set empty table and once the data is loaded it’s overridden. Instead you can use maxCols and maxRows to define the limit of rows and columns.