Python/Matplotlib/Pyside Fast Timetrace scrolling
I have large time-traces that must be inspected visually, so I need a fast scrolling tool. How can I achieve the fastest Maplotlib/Pyside scrolling? Right know, I added a PySide scroll-bar to a MPL figure and update the x-range of the plot with set_xlim() method. This is not fast enough especially because in the final application I have at least 8 time-traces in different subplots that must all scroll together. A figure of the plot is attached . Is there room for improvement? Here I attach the demo code that demonstrate the relatively low scrolling. It's long but it's almost all boiler-plate