Sunday, May 16, 2021

Re: Creating dynamic chart / graphs with Django

I like to start with one of the free dashboard templates for a project like this. I've used both CoreUI and AdminLTE in the past with good success. These dashboard templates include some sample graphs using one of the standard JavaScript charting libraries.

I look at these graph examples for how the data is loaded. Then I use Django to load the data that same way. I like to optimize the data on the back end instead of having the charting library optimize it on the front end. For example, I'll do the interpolation of data in Python on the back end.

This allows me to have a project that has a pretty nice looking feel by default. Also I don't have to go through the trouble of trying to select a front end stack. The template has already done that for me.

On May 15, 2021 8:27:35 AM CDT, Santhosh Kumar <santhoshkgvasudevan@gmail.com> wrote:
i too have similar requirement. I tried plotly, however the integration of django and plotly didnt go well often with huge data in sense, loading time was high and special channels setup was required. (i learnt from this video).
Currently im trying with chartjs.
Any other better suggestions please let us know in the group.

I believe (not sure) such channels implementation will be required for bokeh and seaborn as well. 

On Monday, April 12, 2021 at 6:30:17 PM UTC+2 tristant wrote:
Thanks Walter and Lars for the tips.

On Mon, Apr 12, 2021 at 8:16 AM Lars Liedtke <lie...@punkt.de> wrote:

Hey,

this is quite good https://bokeh.org it can create dynamic html/js as well, but I don't know how the interagion into django is.

Cheers

Lars

Am 12.04.21 um 15:32 schrieb Walter Randazzo:
Hi Tristan,

i have used this one just once. 

Check it, it easy to setup.

Regards,



El lun, 12 abr 2021 a las 10:05, tristant (<tran.tr...@gmail.com>) escribió:
I am looking to build site with a variety of charts and graphs. A quick search shows quite a lot of packages out there, as listed here Django Packages : Charts

Has anyone used any of these packages and could provide some advice on which is better? For my task, I am looking to create both typical 2D charts as well as possible 3D plots. The charts need to be interactive ( as in user can tweak inputs and expect the charts to respond).

I have done similar charts with R Shiny. I am wondering which of these packages can do similar things?

I notice in the link, some packages mention "offline". Does this mean they cannot create interactive charts?

Thanks.
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/efe61d41-1e8c-4c56-899f-8164c0384bf3n%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAL7Dry50qF%3DJ0A5f3p%3DUMpVhzhnAV2s4nRmUr4g37LZ5Qju3%3Dg%40mail.gmail.com.
--   ---  punkt.de GmbH  Lars Liedtke  .infrastructure    Kaiserallee 13a	  76133 Karlsruhe    Tel. +49 721 9109 500  https://infrastructure.punkt.de  in...@punkt.de    AG Mannheim 108285  Geschäftsführer: Jürgen Egeling, Daniel Lienert, Fabian Stein

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.

No comments:

Post a Comment