Posted 20 November 2018, 11:54 am EST
When I change the size of a column that a chart resides on, the chart size changes along with the column size.
Is there a way to make sure the chart size does not change with any row or column size change?
Forums Home / Spread / SpreadJS
Posted by: asarkar on 20 November 2018, 11:54 am EST
Posted 20 November 2018, 11:54 am EST
When I change the size of a column that a chart resides on, the chart size changes along with the column size.
Is there a way to make sure the chart size does not change with any row or column size change?
Posted 21 November 2018, 7:07 am EST
Hello,
You can set the dynamicSize method of Chart and pass false in it.
For example:
chart.dynamicSize(false);
Thanks,
Deepak Sharma
Posted 21 November 2018, 11:24 am EST
That did it.
Thanks a lot!