Hello,
I'm currently using React Gantt in our project. The Gantt chart consists of a table on the left and a chart on the right, with a resize handle that allows adjusting the horizontal ratio between them.
In our case, we are rendering two Gantt chart components vertically (one above the other). I would like to synchronize the resize handles, so that when the table width is adjusted in one chart, the other one updates accordingly to match the same table width.
Is there any way to detect changes caused by the resize handle, and manually set or update the table width programmatically?
thank you.