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.
21 lines
441 B
21 lines
441 B
{% extends '_layout.jinja2' %} |
|
|
|
{% block section %} |
|
<h3>Normal</h3> |
|
{{ chart.render_table() }} |
|
|
|
<h3>Total</h3> |
|
{{ chart.render_table(total=True) }} |
|
|
|
<h3>Style</h3> |
|
{{ chart.render_table(total=True, style=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 %}
|
|
|