Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aterkik/django-chartbuilder
A simple Django application for integrating Chartbuilder
https://github.com/aterkik/django-chartbuilder
Last synced: 3 months ago
JSON representation
A simple Django application for integrating Chartbuilder
- Host: GitHub
- URL: https://github.com/aterkik/django-chartbuilder
- Owner: aterkik
- License: mit
- Created: 2014-05-25T19:47:01.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-06-27T13:30:22.000Z (over 10 years ago)
- Last Synced: 2024-09-15T20:59:42.265Z (5 months ago)
- Language: JavaScript
- Size: 8.23 MB
- Stars: 8
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
====================
Django Chartbuilder
====================A simple Django application for integrating
`Chartbuilder `_.Install
-------
``pip install django_chartbuilder``
Quick start
-----------1. Add ``django_chartbuilder`` to your ``INSTALLED_APPS`` setting::
INSTALLED_APPS = (
...
'django_chartbuilder',
)2. Include the django-chartbuilder URLconf in your project ``urls.py``::
url(r'^/chartbuilder/$', include('django_chartbuilder.urls')),
3. Navigate to ``/chartbuilder/`` to get the default styled Chartbuilder
chart generator (i.e. identical to http://quartz.github.io/Chartbuilder/)Customization
-------------You can extend the ``chartbuilder.html`` template to customize the chart
generator.In your project's ``templates/django_chartbuilder/`` directory, create a
template ``chartbuilder.html`` and extend
``djangno_chartbuilder/index.html``::
{% extends "django_chartbuilder/index.html" %}
{% block title %}My Custom Chartbuilder Generator{% endblock %}
{% block extrajs %}
{% endblock %}Take a look at ``django_chartbuilder/templates/django_chartbuilder/index.html``
to find out (a lot of) additional sections you can override.License
-------
MIT