pizza-chart.html 727 Bytes
{% load i18n %}

<script src="{{ STATIC_URL }}third-party/highcharts/js/highcharts.js"></script>
<script>
$(function () {
  $('#{{ chart_div }}').highcharts({
    chart: {
      type: 'pie',
      height: {{ chart_height }},
    },

    plotOptions: {
      pie: {
        allowPointSelect: true,
        cursor: 'pointer',
        dataLabels: {
          enabled: false
        },
          showInLegend: true
      }
    },

    title: {
      text: {% if chart_title %}'{{ chart_title }}'{% else %}''{% endif %}
    },

    series: [{
      data: [
        {% for option, value in chart_data.items %}
          ['{{ option }}', {{ value }}],
        {% endfor %}
      ],
      name: '{{ name }}'
    }]
  });
});
</script>