Re: Testing Google Charts within Django Unit Tests

2012-04-27 Thread Mario Gudelj
Yeah, selenium is your friend in this case On 27/04/2012 3:07 PM, "Jonas Geiregat" wrote: > > > > I'm looking for a way to test the data that a google chart displays on > > a web site with a unit test. Is this at all possible, and if so, where > > should I look to accomplish

Re: Testing Google Charts within Django Unit Tests

2012-04-26 Thread Jonas Geiregat
> I'm looking for a way to test the data that a google chart displays on > a web site with a unit test. Is this at all possible, and if so, where > should I look to accomplish this? I've tried accessing the Google > visualization datatable that is used to create the chart, but it > doesn't seem

Testing Google Charts within Django Unit Tests

2012-04-26 Thread Zachary Toner
I'm looking for a way to test the data that a google chart displays on a web site with a unit test. Is this at all possible, and if so, where should I look to accomplish this? I've tried accessing the Google visualization datatable that is used to create the chart, but it doesn't seem to be a part

Re: How to draw line charts in Django?

2011-05-05 Thread Frank Becker
On 5/5/11 9:28 AM, Nge wrote: Hi, > I want to know. How can I create line charts in Django? > Then I have to take data from postgresql for x-axis and y-axis. Have a look at codespeed [0]. That's behind http://speed.pypy.org/ and http://speed.twistedmatrix.com/. It's using one of the Java

Re: How to draw line charts in Django?

2011-05-05 Thread Frank Becker
On 5/5/11 6:22 PM, Xavier Ordoquy wrote: > > Le 5 mai 2011 à 16:06, william ratcliff a écrit : Hi, >> One other approach is that you can send the data to matplotlib (which is >> python) and use that to create a .png which you then serve--it depends on >> what your needs are. [...] >

Re: How to draw line charts in Django?

2011-05-05 Thread Xavier Ordoquy
Le 5 mai 2011 à 16:06, william ratcliff a écrit : > One other approach is that you can send the data to matplotlib (which is > python) and use that to create a .png which you then serve--it depends on > what your needs are. > > William Hi, matplotlib is incredibly hard to understand and

Re: How to draw line charts in Django?

2011-05-05 Thread william ratcliff
One other approach is that you can send the data to matplotlib (which is python) and use that to create a .png which you then serve--it depends on what your needs are. William On Thu, May 5, 2011 at 6:40 AM, Kenneth Gonsalves wrote: > On Thu, 2011-05-05 at 03:05 -0700,

Re: How to draw line charts in Django?

2011-05-05 Thread Jacob Kaplan-Moss
On Thu, May 5, 2011 at 5:05 AM, Nge wrote: > I already created a view and can extract data from database.But I have > a problem. I don't know how to send to template and how to create js/ > ajax. Can you share me sample? I've recently done a project that uses Ajax,

Re: How to draw line charts in Django?

2011-05-05 Thread Kenneth Gonsalves
On Thu, 2011-05-05 at 03:05 -0700, Nge wrote: > I already created a view and can extract data from database.But I have > a problem. I don't know how to send to template and how to create js/ > ajax. Can you share me sample? how to use js does not come in the purview of this list - you just need

Re: How to draw line charts in Django?

2011-05-05 Thread Xavier Ordoquy
Le 5 mai 2011 à 12:05, Nge a écrit : > Hi KG! > > I already created a view and can extract data from database.But I have > a problem. I don't know how to send to template and how to create js/ > ajax. Can you share me sample? > > Thanks > Nge There are tons of javascript application that can

Re: How to draw line charts in Django?

2011-05-05 Thread Nge
:28 -0700, Nge wrote: > > I want to know. How can I create line charts in Django? > > Then I have to take data from postgresql for x-axis and y-axis. > > So how should I do? How can apply django, postgres, graph and ajax? > > create a view - extract the data you want and se

Re: How to draw line charts in Django?

2011-05-05 Thread stava
On Thu, 05 May 2011 13:14:57 +0530, Kenneth Gonsalves wrote: On Thu, 2011-05-05 at 00:28 -0700, Nge wrote: I want to know. How can I create line charts in Django? Then I have to take data from postgresql for x-axis and y-axis. So how should I do? How can apply django, postgres, graph and ajax

Re: How to draw line charts in Django?

2011-05-05 Thread Kenneth Gonsalves
On Thu, 2011-05-05 at 00:28 -0700, Nge wrote: > I want to know. How can I create line charts in Django? > Then I have to take data from postgresql for x-axis and y-axis. > So how should I do? How can apply django, postgres, graph and ajax? create a view - extract the data you want

How to draw line charts in Django?

2011-05-05 Thread Nge
Hi everyone ! I want to know. How can I create line charts in Django? Then I have to take data from postgresql for x-axis and y-axis. So how should I do? How can apply django, postgres, graph and ajax? Pls share your knowledge. Thanks Nge -- You received this message because you are subscribed

Re: statistics, reporting, charts for django

2010-04-28 Thread Georg Holzmann
Hallo ! Yes, thanks, I already looked into google-chartwrapper and they work quite nice ! However, I think I will integrate the interactive charts (google visualization) - there are no template tags for it so far, but a python interface exists:

Re: statistics, reporting, charts for django

2010-04-27 Thread shacker
On Apr 27, 2:18 am, Georg Holzmann wrote: > Hallo! > > My question: is there a django application which I could reuse (or > learn from) or which could help in the development ? > It would be nice to have a dashboard to put charts, statistics, ... > onto and an easy interface to

statistics, reporting, charts for django

2010-04-27 Thread Georg Holzmann
Hallo! I want to build an application like google analytics for django ;) : users should be able to log in and see their statistics/charts. So basically it should be somehow like the django-reporting application, but not in the admin section (should be for general users), with additional

Re: charts in django

2009-01-29 Thread Jeff Hammerbacher
I've employed flot (http://code.google.com/p/flot/) with some success. It's pure javascript and requires jquery. On Thu, Jan 29, 2009 at 7:39 PM, Nick Lo wrote: > > > I need to generate some line charts and bar graphs from django. I > > recall seeing a very

Re: charts in django

2009-01-29 Thread Nick Lo
> I need to generate some line charts and bar graphs from django. I > recall seeing a very promissing package a couple months ago and can't > find it now. > > There's pychart, but it hasn't been maintained for a couple years and > I question its staying power, and it just generates images. open-

Re: charts in django

2009-01-29 Thread Tim Chase
Chris Haynes wrote: > I need to generate some line charts and bar graphs from django. I > recall seeing a very promissing package a couple months ago and can't > find it now. [snip] > Any other ideas or comments on the above? Linux Journal's most recent print-edition had a good article

Re: charts in django

2009-01-29 Thread Ned Batchelder
Pygooglechart is a good interface to the Google charting API: http://pygooglechart.slowchop.com/ --Ned. http://nedbatchelder.com Chris Haynes wrote: > I need to generate some line charts and bar graphs from django. I > recall seeing a very promissing package a couple months ago and can't >

charts in django

2009-01-29 Thread Chris Haynes
I need to generate some line charts and bar graphs from django. I recall seeing a very promissing package a couple months ago and can't find it now. There's pychart, but it hasn't been maintained for a couple years and I question its staying power, and it just generates images. open-flash- chart