Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matthisk/django-jchart
📈 A Django package for plotting charts using the excellent Chart.JS library.
https://github.com/matthisk/django-jchart
chart charting-library chartjs django
Last synced: 14 days ago
JSON representation
📈 A Django package for plotting charts using the excellent Chart.JS library.
- Host: GitHub
- URL: https://github.com/matthisk/django-jchart
- Owner: matthisk
- License: bsd-3-clause
- Created: 2017-01-24T16:36:44.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-07-30T09:32:35.000Z (over 4 years ago)
- Last Synced: 2024-05-01T05:22:27.606Z (7 months ago)
- Topics: chart, charting-library, chartjs, django
- Language: Python
- Homepage:
- Size: 75.2 KB
- Stars: 121
- Watchers: 4
- Forks: 24
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# django-jchart
[![Build Status](https://travis-ci.org/matthisk/django-jchart.svg?branch=master)](https://travis-ci.org/matthisk/django-jchart) [![Coverage Status](https://coveralls.io/repos/github/matthisk/django-jchart/badge.svg?branch=master)](https://coveralls.io/github/matthisk/django-jchart?branch=master)
[![PyPI version](https://badge.fury.io/py/django-jchart.svg)](https://badge.fury.io/py/django-jchart)This Django app enables you to configure and render Chart.JS charts directly from your Django codebase. Charts can than either be rendered directly into your Django template or served asynchronously to the webbrowser.
- Authors: Matthisk Heimensen
- Licence: BSD
- Compatibility: Django 1.5+, python2.7 up to python3.5
- Project URL: https://github.com/matthisk/django-jchart### Getting Started
install ``django-jchart``
```
pip install django-jchart
```Add ``django-jchart`` to your installed apps.
```
INSTALLED_APPS = (
'...',
'jchart',
)
```
Enable template loading from app folders by adding the following property to your TEMPLATES django configuration:TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'APP_DIRS': True,
# ...
}]
Frontend Dependencies
For the charts to be rendered inside the browser you will
need to include the Chart.JS library. Add the following
HTML before your closing</body>
tag:<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.4.0/Chart.bundle.min.js"></script>
If you want to make use of asynchronous loading charts
you will also need to include jQuery:<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
The Chart Class
At the heart of this charting library lies theChart
class. This class describes a chart and defines which data it should display. The chart's 'class fields' map to Chart.JS options which describe how the chart should render and behave. By overriding theget_datasets
method on yourChart
instance you can define which data should be displayed.
To define which type of chart you want to render (e.g. a line or bar chart), your chart class should set its class fieldchart_type
to one of "line", "bar", "radar", "polarArea", "pie", or "bubble". A chart class without this field is invalid and initialization will result in anImproperlyConfigured
exception.from jchart import Chart
class LineChart(Chart):
chart_type = 'line'
get_datasets
Theget_datasets
method should return a list of datasets this chart should display. Where a dataset is a dictionary with key/value configuration pairs (see the Chart.JS documentation).from jchart import Chart
class LineChart(Chart):
chart_type = 'line'def get_datasets(self, **kwargs):
return [{
'label': "My Dataset",
'data': [69, 30, 45, 60, 55]
}]
get_labels
This method allows you to set the Chart.JSdata.labels
parameter. Which allows you to configure categorical axes. For an example on how to use this feature see this pie chart.from jchart import Chart
class PieChart(Chart):
chart_type = 'pie'def get_labels(self, **kwargs):
return ['Red', 'Blue']
Configuring Charts
A chart can be configured through the following class fields:
scales
layout
title
legend
tooltips
hover
animation
elements
responsive
All of these fields map to the same key in the Chart.JS 'options' object. For instance, if you wanted to create a chart that does not render responsively you would set the responsive class field to false:from jchart import Chart
class UnresponsiveLineChart(Chart):
chart_type = 'line'
responsive = False
# ...
Most of these class fields require either a list of dicitonaries or a dictionary. With the exception ofresponsive
which should be a boolean value. Be sure to read the Chart.JS documentation on how to use these configuration options.
For your convenience there are some methods located injchart.config
which can be used to produce correct dictionaries to configure Chart.JS properties. Most of these methods only serve as a validation step for your input configuration but some can also transform their input. Let's take a look at an example, how would you configure the X-Axis so it is not to be displayed:from jchart import Chart
from jchart.config import Axesclass LineChart(Chart):
chart_type = 'line'
scales = {
'xAxes': [Axes(display=False)],
}
jchart.config
also contains a method to create dataset configuration dictionaries. One of the advantages of using this method is that it includes a special propertycolor
which can be used to automatically set the values for: 'backgroundColor', 'pointBackgroundColor', 'borderColor', 'pointBorderColor', and 'pointStrokeColor'.from jchart import Chart
from jchart.config import Axesclass LineChart(Chart):
chart_type = 'line'
def get_datasets(self, **kwargs):
return [DataSet(color=(255, 255, 255), data=[])]
Thejchart.config
module contains methods for the properties listed below. Keep in mind that you are in no way obligated to use these methods, you could also supply Python dictionaries in the place of these method calls.
Available configuration methods:
Axes
,ScaleLabel
,Tick
,DataSet
,Tooltips
,Legend
,LegendLabel
,Title
,Hover
,InteractionModes
,Animation
,Element
,ElementArc
,ElementLine
,ElementPoint
,ElementRectangle
Custom configuration options
There is another special class field namedoptions
this has to be set to a dictionary and can be used to set any other Chart.JS configuration values that are not configurable through a predefined class field (e.g.maintainAspectRatio
). The class fields have precedence over any configuration applied through theoptions
dictionary.from jchart import Chart
class OptionsChart(Chart):
chart_type = 'line'
options = {
'maintainAspectRatio': True
}
# ...
Rendering Charts
Chart instances can be passed to your Django template context.
Inside the template you can invoke the method `as_html` on the
chart instance to render the chart.# LineChart is a class inheriting from jchart.Chart
def some_view(request):
render(request, 'template.html', {
'line_chart': LineChart(),
})
The following code is an example of how to render this line chart
inside your html template:{{ line_chart.as_html }}
Asynchronous Charts
When rendering the chart directly into your HTML template, all the data needed for the chart is transmitted on the page's HTTP request. It is also possible to load the chart (and its required data) asynchronous.
To do this we need to setup a url endpoint from which to load the chart's data. There is a classmethod available onjchart.views.ChartView
to automatically create a view which exposes the chart's configuration data as JSON on a HTTP get request:from jchart.views import ChartView
# LineChart is a class inheriting from jchart.Chart
line_chart = LineChart()urlpatterns = [
url(r'^charts/line_chart/$', ChartView.from_chart(line_chart), name='line_chart'),
]
You can use a custom templatetag inside your Django template to load this chart asynchronously. The custom tag behaves like the Django url templatetag and any positional or keyword arguments supplied to it are used to resolve the url for the given url name. In this example the url does not require any url parameters
to be resolved:{% load jchart %}
{% render_chart 'line_chart' %}
This tag will be expanded into the following JS/HTML code:<canvas class="chart" id="unique-chart-id">
</canvas><script type="text/javascript">
window.addEventListener("DOMContentLoaded", function() {
$.get('/charts/line_chart/', function(configuration) {
var ctx = document.getElementById("unique-chart-id").getContext("2d");new Chart(ctx, configuration);
});
});
</script>
Chart Parameterization
It can often be useful to reuse the same chart for different datasets. This can either be done by subclassing an existing chart class and overriding itsget_datasets
method. But there is another way to do this. Any arguments given to theas_html
method are supplied to yourget_datasets
method. This makes it possible to parameterize the output ofget_datasets
Let's have a look at an example. Imagine we have price point data stored in a model calledPrice
and this model has a field calledcurrency_type
. We could render the chart for different currency types by accepting the value for this field as a parameter toget_datasets
.from jchart import Chart
from core.models import Priceclass PriceChart(Chart):
chart_type = 'line'def get_datasets(self, currency_type):
prices = Price.objects.filter(currency_type=currency_type)data = [{'x': price.date, 'y': price.point} for price in prices]
return [DataSet(data=data)]
If we supply an instance of this chart to the context of our template, we could use this to render two different charts. This is done by using therender_chart
template tag to supply additional parameters to theget_datasets
method:{% render_chart price_chart 'euro' %}
{% render_chart price_chart 'dollar' %}
For asynchronous charts any url parameters are passed to theget_datasets
method.from jchart.views import ChartView
from .charts import PriceChartprice_chart = PriceChart()
urlpatterns = [
url(r'^currency_chart/(?P<>\w+)/$',
ChartView.from_chart(price_chart))
]
To render this chart asynchronously we have to supply the url parameter as a second argument to therender_chart
template tag, like so:{% load jchart %}
{% render_chart 'price_chart' 'euro' %}
{% render_chart 'price_chart' 'dollar' %}
### ToDO
* Composable datasources (instead of having to rely on inheritance)
* Compare django-jchart to other Django chartig libraries (in the readme)### Contributing
#### Releasing
* To release update the version of the package in `setup.py`.
* Add release to `CHANGELOG.md`.
* Run commands:```
python setup.py sdist bdist_wheel --universal
twine upload dist/*
```* Add git tag to commit