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.

107 lines
2.8 KiB

13 years ago
=============================
A python SVG Charts Creator
=============================
13 years ago
Presentation
============
pygal 1.0 is a dynamic SVG charting library.
13 years ago
.. class:: thumbs
.. compound::
.. pygal:: 300 200
chart = pygal.HorizontalBar(y_label_rotation=-25)
chart.x_labels = 'one', 'two', 'three', 'four', 'five'
chart.add('red', [1, 2, 3, 1, 2])
chart.add('green', [4, 3, 0, 1, 2])
.. pygal:: 300 200
chart = pygal.Line(x_label_rotation=25, fill=True, style=pygal.style.NeonStyle, interpolate='cubic')
chart.x_labels = 'one', 'two', 'three', 'four', 'five'
chart.add('red', [1, 2, 3, 1, 2])
chart.add('green', [4, 3, 0, 1, 2])
.. pygal:: 300 200
chart = pygal.Pie()
chart.x_labels = 'one', 'two', 'three', 'four', 'five'
chart.add('red', [1, 2, 3, 1, 2])
chart.add('green', [4, 3, 0, 1, 2])
.. pygal:: 300 200
chart = pygal.Radar(fill=True, style=pygal.style.NeonStyle)
chart.x_labels = 'one', 'two', 'three', 'four', 'five'
chart.add('red', [1, 2, 3, 1, 2])
chart.add('green', [4, 3, 0, 1, 2])
13 years ago
It features various graph types:
- `Bar charts </chart_types/#bar-charts-histograms>`_
- `Line charts </chart_types/#line-charts>`_
- `XY charts </chart_types/#xy-charts>`_
- `Pie charts </chart_types/#pies>`_
- `Radar charts </chart_types/#radar-charts>`_
13 years ago
13 years ago
- `Dot charts </chart_types/#dot-charts>`_
13 years ago
- `Pyramid charts </chart_types/#pyramid-charts>`_
- `Funnel charts </chart_types/#funnel-charts>`_
- `Gauge charts </chart_types/#gauge-charts>`_
- `Worldmap charts </chart_types/#worldmap-charts>`_
13 years ago
13 years ago
Python/Css styling with some packaged themes (`default </styles/#default>`_,
`light </styles/#light>`_,
`neon </styles/#neon>`_,
`clean </styles/#clean>`_,
`dark_solarized </styles/#dark-solarized>`_,
`light_solarized </styles/#light-solarized>`_)
13 years ago
`And a lot of options to customize the charts. </basic_customizations>`_
13 years ago
13 years ago
Get it !
========
- `Get the package on pypi <http://pypi.python.org/pypi/pygal/>`_
- `Fork me on github <http://github.com/Kozea/pygal>`_
More information in the `download page </download>`_
13 years ago
Technical Description
=====================
As of now pygal is known to work for python 2.6, 2.7 and 3.2, 3.3.
13 years ago
Needed dependencies
-------------------
pygal uses `lxml <http://lxml.de/>`_ to generate the svg, this is the only needed dependency.
Optional dependencies
---------------------
PNG output requires `CairoSVG <http://cairosvg.org/>`_, `tinycss <http://packages.python.org/tinycss/>`_ and `cssselect <http://packages.python.org/cssselect/>`_.
Install those with ``pip install CairoSVG tinycss cssselect``.
Interpolations need the `scipy <http://www.scipy.org/>`_ python module.
13 years ago
Unit testing needs `py.test <http://pytest.org/latest/>`_ or `nosetests <http://readthedocs.org/docs/nose/en/latest/>`_.
Visual testing is based on `flask <http://flask.pocoo.org/>`_.