Re: Creating dynamic chart / graphs with Django

2021-05-16 Thread Ryan Nowakowski
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

Re: Creating dynamic chart / graphs with Django

2021-05-15 Thread Thomas Lockhart
Django integration is fairly easy with Bokeh. For very large datasets you will want to also use Datashader and Holoviews so that high-density data gets rendered with meaningful interpolations. hth - Tom > On Apr 12, 2021, at 7:16 AM, Lars Liedtke wrote: > > Hey, > > this is quite good

Re: Creating dynamic chart / graphs with Django

2021-05-15 Thread Santhosh Kumar
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

Re: Creating dynamic chart / graphs with Django

2021-04-12 Thread Tran Trong Tri
Thanks Walter and Lars for the tips. On Mon, Apr 12, 2021 at 8:16 AM Lars Liedtke 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

Re: Creating dynamic chart / graphs with Django

2021-04-12 Thread Walter Randazzo
Plus, in order to be an interactive real "live" chart you can use ajax. El lun., 12 abr. 2021 10:32 a. m., Walter Randazzo escribió: > Hi Tristan, > > i have used this one just once. > > > https://www.highcharts.com/demo > > Check it, it easy to setup. > > Regards, > > > > El lun, 12 abr 2021 a

Re: Creating dynamic chart / graphs with Django

2021-04-12 Thread Lars Liedtke
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.  > > > https://www.highcharts.com/demo

Re: Creating dynamic chart / graphs with Django

2021-04-12 Thread Walter Randazzo
Hi Tristan, i have used this one just once. https://www.highcharts.com/demo Check it, it easy to setup. Regards, El lun, 12 abr 2021 a las 10:05, tristant () escribió: > I am looking to build site with a variety of charts and graphs. A quick > search shows quite a lot of packages out

Creating dynamic chart / graphs with Django

2021-04-12 Thread tristant
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?

how to add graphs in django admin panel

2019-08-26 Thread Balaji Shetty
Hi everyone Can anybody suggest me how to add different graphs in django admin panel for relational models. I will apply count, group by clsuse query to display count. One more questions. We can change default django Administration GUI using django admin suit. How is it. Is there any other way

Re: USING graphs in django admin

2017-03-06 Thread chris rose
i have used d3.js in a template and past it data when answering a http request with a view i found d3.js a little interesting to wrap my head around but it is a good tool not used it with the admin though -- You received this message because you are subscribed to the Google Groups "Django

Re: USING graphs in django admin

2017-03-03 Thread Luvpreet Singh
> -- > The most dangerous phrase in the language is, "We've always done it this > way." > > - Grace Hopper > > On 3 March 2017 at 21:22, Luvpreet Singh <s.luvp...@gmail.com > > wrote: > >> I want to display graphs in django admin. Is there any tool

Re: USING graphs in django admin

2017-03-03 Thread Lachlan Musicman
wrote: > I want to display graphs in django admin. Is there any tool to display > them in django admin site ? > > > I have tried django-admin-tools-stat , but I don't want to create a > different dashboard for the graphs. > > > I want the queries on the models to be displayed wi

USING graphs in django admin

2017-03-03 Thread Luvpreet Singh
I want to display graphs in django admin. Is there any tool to display them in django admin site ? I have tried django-admin-tools-stat , but I don't want to create a different dashboard for the graphs. I want the queries on the models to be displayed with the help of those graphs

Re: Graphs in django

2012-06-12 Thread kenneth gonsalves
On Tue, 2012-06-12 at 11:24 +0530, Satvir Toor wrote: > On Tue, Jun 12, 2012 at 11:15 AM, Alec Taylor > wrote: > > Put it in the template or whatnot > > > > Might be an easier job for a javascript graph library, or even > processing-js > okie.But i am not clear with

Re: Graphs in django

2012-06-11 Thread Anoop Thomas Mathew
Hi, What you are generating right now, is in a GTK window (desktop). This is not directly show-able in a browser AFIK. What you can do is to 1. Generate a jpeg/png from that, and serve it as a static file to the browser, just like an image 2. You can send the data across to the browser as json or

Re: Graphs in django

2012-06-11 Thread Satvir Toor
On Tue, Jun 12, 2012 at 11:15 AM, Alec Taylor wrote: > Put it in the template or whatnot > > Might be an easier job for a javascript graph library, or even processing-js okie.But i am not clear with javascript graph libraray -- Satvir Kaur satveerkaur.blogspot.in --

Re: Graphs in django

2012-06-11 Thread Alec Taylor
Put it in the template or whatnot Might be an easier job for a javascript graph library, or even processing-js On Tue, Jun 12, 2012 at 3:40 PM, Satvir Toor wrote: > here is code to display sin curve > > from pylab import * > > t = arange(0.0, 2.0, 0.01) > s =

Graphs in django

2012-06-11 Thread Satvir Toor
here is code to display sin curve from pylab import * t = arange(0.0, 2.0, 0.01) s = sin(2*pi*t) plot(t, s, linewidth=1.0) xlabel('time (s)') ylabel('voltage (mV)') title('About as simple as it gets, folks') grid(True) show() its working well but the output is being display in different

Re: Graphs and django

2007-07-12 Thread Ben Ford
Hey Toby, Thanks for the input, I'll try these things on tuesday (not to make anyone jealous but I'm going to Bali for a long weekend in about 10 minutes :-D ). The problems came up when I followed the steps in one of your .txt files... I haven't had a chance to rigorously explore whats going on

Re: Graphs and django

2007-07-12 Thread Toby Dylan Hocking
Hey Jeremy, Thanks for the input. You are correct: I am running a recent copy of django from SVN on the primary machine I am using to develop django.contrib.dataplot. In fact, I ran into the same problem that you did when I tried to port django.contrib.dataplot to a different machine -- a

Re: Graphs and django

2007-07-12 Thread Toby Dylan Hocking
Hi Ben, I see what you're doing now. There are a couple things I should mention. First of all, you are right: getattr(r,'generic.scatter.plot') is not the same as typing r.generic.scatter.plot -- instead, it invokes the __getattr__ method of r, and looks for something by that name in the R

Re: Graphs and django

2007-07-11 Thread Ben Ford
Hi Toby, My versions are: R:2.4.0 Python: 2.5.1 Rpy:1.0-RC2 Sorry I wasn't very clear earlier... I imported r into ipython to have a play with it and see what happens. I tried getattr(r,' generic.scatter.plot') which didn't work - I'm under the impression that getattr won't

Re: Graphs and django

2007-07-11 Thread Jeremy Dunck
On 7/11/07, Toby Dylan Hocking <[EMAIL PROTECTED]> wrote: > If you still need help with making data-driven plots, why don't you check > out my new Django package --- I'd like some testers and comments. Initial reaction-- sweet! After linking dataplot into my contribs dir and adding both

Re: Graphs and django

2007-07-11 Thread Toby Dylan Hocking
Hi Ben, I'm excited to hear that you got a copy of django.contrib.dataplot and you are trying it out. I will try to help you debug the problem, but the full traceback may be more useful. Can you send it? The purpose of the get_r_fun method is to look at the current R environment and check if

Re: Graphs and django

2007-07-11 Thread Ben Ford
Hi Toby I've grabbed a copy of your code but the RPlot.get_r_fun method isn't working for me... Could you perhaps explain how it does the mapping to the R function? What my testing is saying to me is that r (the one that's imported at the top of __init__.py) has no attribute generic... I've had a

Re: Graphs and django

2007-07-11 Thread Toby Dylan Hocking
Hi there, If you still need help with making data-driven plots, why don't you check out my new Django package --- I'd like some testers and comments. Basically it is an interface to the R programming language (for statistics and graphics) through the RPy package. You can download my latest

Re: Graphs and django

2007-06-21 Thread Chundermonkey
i've used chartdirector in the past with django, very easy to install, although the free version cannot be used for commercial purposes. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: Graphs and django

2007-06-21 Thread Kent Johnson
Martin Winkler wrote: > If you want do do really nice graphs, you might take a look at some > screenshots of matplotlib: > http://matplotlib.sourceforge.net/screenshots.html > > The module is quite large, but has really many functions: from simple > pie charts (3D too) up to finance charts which

Re: Graphs and django

2007-06-20 Thread Martin Winkler
Am Wed, 20 Jun 2007 16:26:24 +0100 schrieb "Gerry Steele" <[EMAIL PROTECTED]>: > My needs are to create line, bar and pie charts. One fast way for line graphs would be plain PIL (http://www.pythonware.com/products/pil/) module. But the results are usually not really pretty: No antialiasing of

Re: Graphs and django

2007-06-20 Thread Joseph Heck
I've been using FusionGraphs (flash based graphing, generating the "data" through XML templates) with good success. It's not directly in python using PIL or anything, but it's been quick and effective. -joe On 6/20/07, Gerry Steele <[EMAIL PROTECTED]> wrote: > > i was wondering if anyone had

Graphs and django

2007-06-20 Thread Gerry Steele
i was wondering if anyone had any experience integrating any python graphing or anything similar libraries into django and which library people might recommend. My needs are to create line, bar and pie charts. Many Thanks Gerry -- Gerry Steele http://belfast.no-ip.info/

Re: Creating graphs in Django application

2006-09-08 Thread Andy Robinson
Thanks Joseph. You might find it interesting to take a look at our Diagra product datasheet... we've been in the financial charts business since 2001 http://www.reportlab.com/docs/diagra-ds.pdf The engine and most chart types have been in the open source package since 2001, but we've not

Re: Creating graphs in Django application

2006-09-08 Thread [EMAIL PROTECTED]
there is also pyChart and JS/SVG PlotKit - http://www.liquidx.net/plotkit/ which is used by TurboGears :) NeedsTesting... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group,

Re: Re: Creating graphs in Django application

2006-09-08 Thread Joseph Kocherhans
On 9/8/06, Andy Robinson <[EMAIL PROTECTED]> wrote: > > I have just added an article to the Wiki on how to create charts using > ReportLab's graphics library I hope this helps! > > http://code.djangoproject.com/wiki/Charts Very cool. Thanks Andy! I didn't know ReportLab did anything but pdf

Re: Creating graphs in Django application

2006-09-08 Thread Andy Robinson
I have just added an article to the Wiki on how to create charts using ReportLab's graphics library I hope this helps! http://code.djangoproject.com/wiki/Charts Andy Robinson, CEO/Chief Architect, ReportLab Europe Ltd --~--~-~--~~~---~--~~ You received this

Re: Creating graphs in Django application

2006-09-08 Thread Derek Hoy
On 9/7/06, Devraj <[EMAIL PROTECTED]> wrote: > > Hi everyone, > > I am attempting to create graphs in my Django app.to provide reporting > features. Are there any libraries available to do this in Python or > Django? haven't used it, but there's also Ploticus: - http://

Re: Creating graphs in Django application

2006-09-07 Thread Jeremy Kelley
Quoting Devraj ([EMAIL PROTECTED]): > > Hi everyone, > > I am attempting to create graphs in my Django app.to provide reporting > features. Are there any libraries available to do this in Python or > Django? > > Something like http://www.qualityunit.com/postgraph/ f

Re: Creating graphs in Django application

2006-09-07 Thread Nate Straz
On Thu, Sep 07, 2006 at 01:39:30AM -0700, Devraj wrote: > I am attempting to create graphs in my Django app.to provide reporting > features. Are there any libraries available to do this in Python or > Django? PyX, http://pyx.sourceforge.n

Re: Creating graphs in Django application

2006-09-07 Thread [EMAIL PROTECTED]
non free, but nice: http://www.advsofteng.com/cdpython.html --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe

Re: Creating graphs in Django application

2006-09-07 Thread Jay Klehr
If you don't mind using Flash as the output medium you could try this: http://www.maani.us/xml_charts/ Works with anything that is able to output XML, I've used the PHP version a bit and really like a lot of the options. Jay Devraj wrote: > Hi everyone, > > I am attempting to crea

Re: Creating graphs in Django application

2006-09-07 Thread Gacha
Devraj wrote: > Hi everyone, > > I am attempting to create graphs in my Django app.to provide reporting > features. Are there any libraries available to do this in Python or > Django? > > Something like http://www.qualityunit.com/postgraph/ for PHP

Re: Creating graphs in Django application

2006-09-07 Thread Gacha
Try: http://matplotlib.sourceforge.net/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send

Creating graphs in Django application

2006-09-07 Thread Devraj
Hi everyone, I am attempting to create graphs in my Django app.to provide reporting features. Are there any libraries available to do this in Python or Django? Something like http://www.qualityunit.com/postgraph/ for PHP Thanks --~--~-~--~~~---~--~~ You