The NavigationToolbar2Kivy class miss a dynamic_update() function which draw the plot during panning.
dynamic_update() usually just call self.canvas.draw_idle() But draw_idle() is not yet implemented. Is there a way to implement draw_idle() with kivy event based driven approach? Using draw() in dynamic_update() is very slow.
The NavigationToolbar2Kivy class miss a dynamic_update() function which draw the plot during panning. dynamic_update() usually just call self.canvas.draw_idle() But draw_idle() is not yet implemented. Is there a way to implement draw_idle() with kivy event based driven approach? Using draw() in dynamic_update() is very slow.