{% from "sb-admin/macros/flot/linechart.html" import flot_line_chart %} {% from "sb-admin/macros/flot/piechart.html" import flot_pie_chart %} {% from "sb-admin/macros/flot/multiaxeschart.html" import flot_multiaxes_chart %} {% from "sb-admin/macros/flot/movinglinechart.html" import flot_movingline_chart %} {% from "sb-admin/macros/flot/barchart.html" import flot_bar_chart %} {% extends "sb-admin/master.html" %} {% block body %}
{{flot_line_chart(header="Line Chart Example")}}
{{flot_pie_chart(header="Pie Chart Example")}}
{{flot_multiaxes_chart(header="Multiple Axes Line Chart Example")}}
{{flot_movingline_chart(header="Moving Line Chart Example")}}
{{flot_bar_chart(header="Bar Chart Example")}}
Flot Charts Usage

Flot is a pure JavaScript plotting library for jQuery, with a focus on simple usage, attractive looks, and interactive features. In SB Admin, we are using the most recent version of Flot along with a few plugins to enhance the user experience. The Flot plugins being used are the tooltip plugin for hoverable tooltips, and the resize plugin for fully responsive charts. The documentation for Flot Charts is available on their website, http://www.flotcharts.org/.

View Flot Charts Documentation
{% endblock %} {% block tail %} {% endblock %}