django-jchart
django-jchart copied to clipboard
📈 A Django package for plotting charts using the excellent Chart.JS library.
This change allows us to set the axes type to 'stacked'.
Looks like six library is no longer in django.utils. This fix allows to use django-jchart with django 3.0.8.
When I declare an onCLick option like this : options = { 'onClick': 'graphClickEvent', } The generated JSON is : "onClick" : "graphClickEvent" Expected is "onClick" : graphClickEvent This code...
All dates in rendered charts appear in English, even when user's language is changed and the rest of the page shows in another language, and renders dates using the correct...
I've installed everything, and started by copying examples. At first I thought this was a miracle (because the setup is so easy and the instructions are so well-written). But then...
I wanted to hide a specific dataset inside my django-jchart but hidden wasn't supported. > ValueError at / Use of illegal keyword arguments for DataSet: {'hidden'} This tiny code enhancement...
Is there a way to pass custom data to the views instead of hard-coding it? The examples in this repo have hardcoded data like: ``` from jchart import Chart from...
This is a first adaptation for Jinja2 engine as the code only works with DTL out of the box.
Just added import in README examples for faster "hands on" this package
hello, this project is really good. However, it looks like the "Ticks" options are not working in the Radar chart. For example, below code changes the Max and Min on...