1

我正在尝试创建一个 Pygal 图表并将其显示在烧瓶中 - 而不保存 .svg 文件。这可能吗?我尝试过的每个组合都给了我一个错误。模板:

{% extends "base.html" %}
{% block content %} {{chart}} {% endblock %}

意见:

@app.route('/chart')
def test():
bar_chart = pygal.HorizontalStackedBar()
bar_chart.title = "Remarquable sequences"
bar_chart.x_labels = map(str, range(11))
bar_chart.add('Fibonacci', [0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55])
bar_chart.add('Padovan', [1, 1, 1, 2, 2, 3, 4, 5, 7, 9, 12]) 
chart = bar_chart.render()
return render_template('test.html', chart=chart )

谁能告诉我我做错了什么?

4

2 回答 2

8

如果您使用的是 Python 2.7,则需要使用以下命令:

@app.route('/chart')
def test():
    bar_chart = pygal.HorizontalStackedBar()
    bar_chart.title = "Remarquable sequences"
    bar_chart.x_labels = map(str, range(11))
    bar_chart.add('Fibonacci', [0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55])
    bar_chart.add('Padovan', [1, 1, 1, 2, 2, 3, 4, 5, 7, 9, 12]) 
    chart = bar_chart.render(is_unicode=True)
    return render_template('test.html', chart=chart )

并在模板中呈现图形:

{% extends "base.html" %}
{% block content %} {{chart|safe}} {% endblock %}
于 2014-08-17T18:26:21.737 回答
3
import pygal

@app.route('/something.svg')
def graph_something():
    bar_chart = pygal.Bar()
    bar_chart.add('Fibonacci', [0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55])
    return bar_chart.render_response()

然后让你的 html 文件引用它:

<body>
  <figure>
    <embed type="image/svg+xml" src="/mysvg.svg" />
  </figure>
</body>
于 2014-08-13T17:05:32.817 回答