QCustomPlot Discussion and Comments

Connect interactive zoom/drag action to other graph or plotReturn to overview

Is it possible, to connect a interactive zoom action, actovated by

setInteractions(QCP::iRangeDrag | QCP::iRangeZoom);
to another QCPAxisRect or customplot object?
I need different plots, which where sychronized regarding zoom and drag actions.

I found range syncronising by myself:
The x-axis of each plot or QCPAxisRect could be bound to the others via connect the QCPAxis::rangeChanged(QCPRange)-Signal to the QCPAxis::setRange(QCPRange)-Slots.