My setup is like this: I have multiple panes (16) in a chart control, and each pane has to have its own X axis because each pane can have different strips and strips seem to be linked to the axis itself, not the pane or the series (weird).
This is what it looks like: https://i.stack.imgur.com/UycPf.png. You can see the strips which represent dropped packets for each channel, and they're by definition different across channels.
Now my problem is that I also need to support zooming and panning (which is done), but my X axis has to keep in sync across all panes. Basically if I zoom in on a certain point in time, every pane has to zoom in there.
How do I achieve that without sharing an X axis? Or how do I achieve per-pane strips while sharing an X axis? Either way would solve my problem.