Pygal 1.0.0
Time to become 1.0 !
Get it via PyPi.
Changelog
- pygal is now python 2.6, 2.7, 3.2, 3.3 fully compatible without the use of 2to3.
- pygal-js is now served from kozea.github.com/pygal.js to avoid mime type problems. (Remember to mirror these files on your server to speed up graph generation by setting the js config)
- Secondary axes
chart = pygal.Line(title=u'Some different points')
chart.add('line', [.0002, .0005, .00035])
chart.add('other line', [1000, 2000, 7000], secondary=True)