Skip to content Skip to sidebar Skip to footer

Dynamic Chart In Python

I am essentially trying to replicate the google finance chart, but for sensor data. I would like to embed the chart in a GUI and have it update on a timer (which samples the sensor

Solution 1:

I recently came across Chaco from Enthought.

http://code.enthought.com/projects/chaco/

It is an open source framework written in Python that binds with wx, Qt etc and more usable than matplotlib for building full applications. Very usable and easily customizable. You can use the packaged panning, zooming tools or build your own.

I would suggest downloading the epd-free package to ensure you get all dependencies if you choose to move ahead with it.

http://www.enthought.com/products/epd_free.php/

Solution 2:

I just implement a method to draw dynamic charts in ipython notebook, you can check my blog post here : http://litaotao.github.io/dynamic-charts-matplotlib-alternative-ipython-notebook-python-drawing-js

and bellow is a screenshot:

enter image description here

Post a Comment for "Dynamic Chart In Python"