line_chart.html 850 B

12345678910111213141516171819202122232425
  1. {% load static %}
  2. <html>
  3. <head>
  4. <title>django-chartjs line chart demo</title>
  5. <!--[if lte IE 8]>
  6. <script src="{% static 'js/excanvas.js' %}"></script>
  7. <![endif]-->
  8. </head>
  9. <body>
  10. <h1>Some Line Charts loaded in Ajax!</h1>
  11. <canvas id="myChart" width="500" height="400"></canvas>
  12. <script type="text/javascript" src="http://code.jquery.com/jquery-1.10.0.min.js"></script>
  13. <script type="text/javascript" src="{% static 'js/Chart.min.js' %}"></script>
  14. <script type="text/javascript">
  15. $.get('{% url "line_chart_json" %}', function(data) {
  16. var ctx = $("#myChart").get(0).getContext("2d");
  17. new Chart(ctx, {
  18. type: 'line', data: data
  19. });
  20. });
  21. </script>
  22. </body>
  23. </html>