Open
Description
It is reasonably common to want to have multiple charts "synced" when panning/zooming. An example is to plot yaw, pitch and roll against time on three separate graphs. If the user zooms in on the yaw graph, the pitch and roll graphs should zoom in the same manner.
Currently it is technically possible, but difficult. We should develop an API to make this simple, perhaps something like:
rollChart.syncViewPort(to: yawChart)
pitchChart.syncViewPort(to: rollChart)
This is a feature that would also need an Android implementation @PhilJay.