Hello,

I am currently using Qt 5.8 with visual studio 2015. I am currently running in debug mode

I am using a timer to kick off an updateGUI function call with all my GUI update calls. If I remove all the gui updates I can hit a gui refresh rate of like 500 fps.

As I add the spinboxes, led and lineseries into the mix I can get around 5-8 fps.

I have been reading and it seems all the gui updates need to be done in the main thread. All the data processing has already been pushed off to worker threads.

Are there any suggestions to getting all these updates done quickly? I'd like to at least hit 30 fps.