Hello,
at the documentation i found the following comment:
~~~
3. Performance
If all cells in a column have the same color and this is true for all columns, the following optimization is applied:
The color information is only sent once for each column. This makes the HTTP response size smaller.
The column is rendered as a single div. This makes the rendering faster.
~~~
At my application all cells in a ROW have the same color. Is it possible to improve rendering for this case? This would be extremly helpful, because it would decrease the number of div-Elements from about 2880 to 30.
Thank you!