react-c3js
react-c3js copied to clipboard
Apply zoom domain from one chart to other
If I create a chart by
<C3Chart
data={figures}
zoom={{enabled:true, onzoom: (d) => console.log(d) }}
/>;
in console I can see that the domain of zoomed area is logged. My question is how can I apply this domain to other graphs that are already rendered in order to synchronize zoom level among them?