mirror of https://github.com/Kozea/pygal.git
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.
19 lines
372 B
19 lines
372 B
11 years ago
|
{% extends '_layout.jinja2' %}
|
||
|
|
||
|
{% block section %}
|
||
|
<h3>Normal</h3>
|
||
|
{{ chart.render_table() }}
|
||
|
|
||
|
<h3>Total</h3>
|
||
|
{{ chart.render_table(total=True) }}
|
||
|
|
||
|
<h3>Transposed</h3>
|
||
|
{{ chart.render_table(transpose=True) }}
|
||
|
|
||
|
<h3>Transposed + total</h3>
|
||
|
{{ chart.render_table(transpose=True, total=True) }}
|
||
|
|
||
|
<h3>Chart</h3>
|
||
|
{{ chart.render() }}
|
||
|
{% endblock section %}
|