Python to generate nice looking SVG graph http://pygal.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.1 KiB

12 years ago
Pygal 0.12.1
12 years ago
============
12 years ago
Pygal 0.12.1 is out!
12 years ago
Get it via `PyPi <http://pypi.python.org/pypi/pygal/>`_.
Changelog
---------
12 years ago
- Cabaret is online, check out the new pygal chart generator here: `cabaret.pygal.org <http://cabaret.pygal.org/>`_.
.. image:: /news/cabaret.png
:target: http://cabaret.pygal.org/
12 years ago
- Core rewrite of the instanciation mechanism. Now it works with ghost objects holding configuration and values. Those phantoms instanciate the real objects only when the render function is called. It simplifies a lot of code.
- Support of label indexed values, ie:
.. pygal-code::
chart = pygal.Bar()
chart.add('A', {'red': 10, 'green': 12, 'blue': 14})
chart.add('B', {'green': 11, 'red': 7})
chart.add('C', {'blue': 2, 'red': 13})
chart.x_labels = ('red', 'green', 'blue')
.. caution::
It breaks the api when adding only a value with its metadata:
.. code-block::
chart.add('Serie', {'value': 2, 'label': 'my only value'}) # Don't write that
chart.add('Serie', [{'value': 2, 'label': 'my only value'}]) # Write this instead
12 years ago
- New config self description for cabaret
- Minor fixes