Re: Chart library for django

2017-03-06 Thread Fabio C. Barrionuevo da Luz
another option: https://github.com/agiliq/django-graphos https://github.com/agiliq/django-graphos#charting-api-supported live sample: http://agiliq.com/demo/graphos/ On Mon, Mar 6, 2017 at 2:15 PM, acheraime . wrote: > In one of my project I've used django-nvd3 (https://github.com/areski

Re: Chart library for django

2017-03-06 Thread acheraime .
In one of my project I've used django-nvd3 ( https://github.com/areski/django-nvd3). It's a python/django abstraction layer to d3.js. On Mon, Mar 6, 2017 at 12:03 PM, Melvyn Sopacua wrote: > On Monday 06 March 2017 12:04:16 Vijay Khemlani wrote: > > > Rendering server-side charts is usually a me

Re: Chart library for django

2017-03-06 Thread Melvyn Sopacua
On Monday 06 March 2017 12:04:16 Vijay Khemlani wrote: > Rendering server-side charts is usually a mess, and the result > (usually a static image) is not as good as using a JS library. Well first - I count 10 of that grid without looking at details that use JS to render. So that's the majority.

Re: Chart library for django

2017-03-06 Thread Vijay Khemlani
Rendering server-side charts is usually a mess, and the result (usually a static image) is not as good as using a JS library. I use Highcharts, just had to make a little layer on top of it to make it compatible with the JSON django was generating. It also encourages separation of concerns between

Re: Chart library for django

2017-03-06 Thread Melvyn Sopacua
On Sunday 05 March 2017 22:10:07 Luvpreet Singh wrote: > I am looking for some solution to display django database queryset to > django admin over graphs. https://djangopackages.org/grids/g/charts/ Problem is, the majority is abandonware. -- Melvyn Sopacua -- You received this message becaus

Re: Chart library for django

2017-03-06 Thread Larry Martell
On Mon, Mar 6, 2017 at 1:10 AM, Luvpreet Singh wrote: > > Hi everyone, > > I am looking for some solution to display django database queryset to django > admin over graphs. > I had used highcharts to do that earlier, but to use highcharts, I have to > write too much scripts and functions. > > Is

Re: Chart library for django

2017-03-05 Thread Lachlan Musicman
Hi Luvpreet, There's nothing built into Django. Django is a web framework and charts are outside of that. Django is written in Python and uses the standard web technologies like HTML, CSS and JS. You will need to find a charting package that can be used with any of those and work out how you want

Chart library for django

2017-03-05 Thread Luvpreet Singh