Error trying to switch between different charts

2020-12-18 Thread cosmos multi
I am developing an application which shows the data created in a chartjs graph, what I am doing it does well, since all the data is displayed in the way I want, but I have a problem and that is that now I am trying to do that according to the type of graph that a user wants, this is changed, the

How to display multiple pie charts based on multiple lists?

2020-05-12 Thread ratnadeep ray
Hi all, I have a requirement where I need to display multiple pie charts based on multiple lists. Currently, I am able to display one pie chart involving 2 lists. Below is the views.py code for the same: # Create your views here. from django.shortcuts import render def pie_chart(request

Re: Charts view function suggestions

2020-05-09 Thread hajar
t, 'dash.html', { >> 'labels': labels, >> 'data': data, >> }) >> >> >> Le vendredi 8 mai 2020 23:29:25 UTC+1, _M_A_Y_A_N_K_ a écrit : >>> >>> Hi Hajar, >>> >>> Though

Re: Charts view function suggestions

2020-05-08 Thread Motaz Hejaze
html', { > 'labels': labels, > 'data': data, > }) > > > Le vendredi 8 mai 2020 23:29:25 UTC+1, _M_A_Y_A_N_K_ a écrit : >> >> Hi Hajar, >> >> Though you have multiple model, the main thing is to create

Re: Charts view function suggestions

2020-05-08 Thread hajar
, > > Though you have multiple model, the main thing is to create a queryset. > Once you have a queryset (which can be from one model or multiple model).. > you should be able to use that queryset for Pie-Charts or any other charts. > Also try to use Django-Chart.js, which is much mo

Re: Charts view function suggestions

2020-05-08 Thread _M_A_Y_A_N_K_
Hi Hajar, Though you have multiple model, the main thing is to create a queryset. Once you have a queryset (which can be from one model or multiple model).. you should be able to use that queryset for Pie-Charts or any other charts. Also try to use Django-Chart.js, which is much more easier i

Charts view function suggestions

2020-05-08 Thread hajar Benjat
Hello everyone how are you doing ? I need your suggestions > I have to use a specific models , and I want to do a pie_chart view function based on this models , " but I don't know what to do I saw some view functions examples but they always use one class but here my classes a bit hard and I

Re: Charts

2020-05-07 Thread hajar Benjat
ctly for the chart), only have to load the chart. In > another case you have to transform every JSOn in what you need > > BR > > El jue., 7 may. 2020 a las 12:37, hajar Benjat () > escribió: > >> Hello guys how are you doing? >> >> I want to create charts for

Re: Charts

2020-05-07 Thread DAVID ALEJANDRO Pineda
a las 12:37, hajar Benjat () escribió: > Hello guys how are you doing? > > I want to create charts for an application, things like "delivery apps"... > > Who can help me with examples please > > > > -- > You received this message because you are subscribe

Re: Charts

2020-05-07 Thread Motaz Hejaze
What do you need exactly? I think this is a javascript issue, checkout chart.js On Thu, 7 May 2020, 6:36 pm hajar Benjat, wrote: > Hello guys how are you doing? > > I want to create charts for an application, things like "delivery apps"... > > Who can hel

Charts

2020-05-07 Thread hajar Benjat
Hello guys how are you doing? I want to create charts for an application, things like "delivery apps"... Who can help me with examples please -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this grou

Hi to all, I want to represent the data in the form of charts which is in the dictionary format how? Please Tell me the solution

2019-11-11 Thread Devendra reddy
-- 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+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d

Re: How to create Graphs and charts on Relational ORM

2019-10-27 Thread Abhiram R
On Sun, Oct 27, 2019, 8:41 AM Balaji Shetty wrote: > Hi Everyone > > Happy Diwali . > > > I have one query > > I want to create different Charts. It may include Aggregate query like > avg,min,max,sum,count,group by also. > You should look into pandas-profil

How to create Graphs and charts on Relational ORM

2019-10-26 Thread Balaji Shetty
Hi Everyone Happy Diwali . I have one query I want to create different Charts. It may include Aggregate query like avg,min,max,sum,count,group by also. Query is to perform on multiple models which are connected by Foreign key. Can you please suggest any library or package for getting these

Learn Django Interactive Charts

2019-02-28 Thread Jeeva Bharathy
Hi Friends, I am new to Djanho Python. I like to learn how to create interactive charts using d3.js, reactive application like dashboard. I dont know how and where to start my application. Can anyone direct me in right direction. -- You received this message because you are subscribed to

Re: best practices for handling charts

2017-05-25 Thread Melvyn Sopacua
On Tuesday 23 May 2017 06:25:16 Alceu Rodrigues de Freitas Junior wrote: > (which will > require that I use crontab or something like it to delete old files). Which is a one-liner: find /var/www/generated-graphs -mtime 14 -delete # delete 2- week old files Some solutions are easier then the pro

Re: best practices for handling charts

2017-05-23 Thread Fred Stluka
wrote: Hello to all, I have some charts created with matplotlib and I would like to include them in my Django application. What is the considered best pra

Re: best practices for handling charts

2017-05-23 Thread Alceu Rodrigues de Freitas Junior
Thanks for answering James, I commented your e-mail below: Em 23/05/2017 12:06, James Schneider escreveu: On May 23, 2017 6:33 AM, "Alceu Rodrigues de Freitas Junior" mailto:alceu.freitas...@gmail.com>> wrote: Hello to all, I have some charts created with matplo

Re: best practices for handling charts

2017-05-23 Thread James Schneider
On May 23, 2017 6:33 AM, "Alceu Rodrigues de Freitas Junior" < alceu.freitas...@gmail.com> wrote: Hello to all, I have some charts created with matplotlib and I would like to include them in my Django application. What is the considered best practices in order to do that?

best practices for handling charts

2017-05-23 Thread Alceu Rodrigues de Freitas Junior
Hello to all, I have some charts created with matplotlib and I would like to include them in my Django application. What is the considered best practices in order to do that? I'm considering processing the data and generating PNG files in "temporary" locations, so I when th

Re: django generate pdf with tables and charts

2013-02-15 Thread Christian Schmitt
Maybe this Issue could help you http://code.google.com/p/wkhtmltopdf/issues/detail?id=948 Also pass --enable javascript and the javascript delay to wkhtmltopdf Am Donnerstag, 14. Februar 2013 15:45:38 UTC+1 schrieb Jaimin Patel: > > Sure. > > I had tried to render PDF with pisa, > > template

Re: django generate pdf with tables and charts

2013-02-14 Thread Jaimin Patel
Sorry I posted the answer on wrong thread, Sure. I had tried to render PDF with pisa, template = get_template(template_src) context = Context(context_dict) html = template.render(context) result = StringIO.StringIO() pdf = pisa.pisaDocument(StringIO.StringIO(html.encode("I

Re: django generate pdf with tables and charts

2013-02-14 Thread Jaimin Patel
Sure. I had tried to render PDF with pisa, template = get_template(template_src) context = Context(context_dict) html = template.render(context) result = StringIO.StringIO() pdf = pisa.pisaDocument(StringIO.StringIO(html.encode("ISO-8859-1")), result, link_callback=fetch_re

Re: django generate pdf with tables and charts

2013-02-14 Thread Frank Bieniek
Checkout happypdf.com rest call to create your pdfs Am 14.02.2013 04:28, schrieb Waitman Gobble: On Feb 10, 2013 8:11 AM, "Jaimin Patel" > wrote: > > I am trying to generate pdf using django template, also need some support of javascript code. I have tried PISA,

Re: django generate pdf with tables and charts

2013-02-13 Thread Ovnicraft
On Sun, Feb 10, 2013 at 11:10 AM, Jaimin Patel wrote: > I am trying to generate pdf using django template, also need some support > of javascript code. I have tried PISA, ReportLib and wkhtmltopdf but it > seems that it doesn't wait for Javascript. Hello, can you explain us better what you mean

Re: django generate pdf with tables and charts

2013-02-13 Thread Waitman Gobble
On Feb 10, 2013 8:11 AM, "Jaimin Patel" wrote: > > I am trying to generate pdf using django template, also need some support of javascript code. I have tried PISA, ReportLib and wkhtmltopdf but it seems that it doesn't wait for Javascript. > > Can someone suggest good solution or example? > > -- >

Re: django generate pdf with tables and charts

2013-02-13 Thread Peter of the Norse
Django doesn’t run Javascript, that’s done in the browser. If you really want to have JS processing you’ll have to open a web browser and then print to PDF. On Feb 10, 2013, at 9:10 AM, Jaimin Patel wrote: > I am trying to generate pdf using django template, also need some support of > javascri

django generate pdf with tables and charts

2013-02-10 Thread Jaimin Patel
I am trying to generate pdf using django template, also need some support of javascript code. I have tried PISA, ReportLib and wkhtmltopdf but it seems that it doesn't wait for Javascript. Can someone suggest good solution or example? -- You received this message because you are subscribed to

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 this? I've tried acc

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 t

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: bar charts

2011-11-08 Thread Venkatraman S
I have documented a set of viz libraries: http://blizzardzblogs.blogspot.com/2010/12/data-visualization-charts-and.html -V- -- 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@googlegrou

Re: bar charts

2011-11-08 Thread kenneth gonsalves
On Tue, 2011-11-08 at 21:16 +1100, Mario Gudelj wrote: > I'm a Django/Python beginner, but the above works for me and it plots > the number of items per month, where the Y-axis is the number of items > and X-axis is the month names. I found it faster and more efficient to generate the DataTable us

Re: bar charts

2011-11-08 Thread Mario Gudelj
Hey, I implemented a line chart and this is my code: View: def render_chart(request): months = ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'] month_values = [0,0,0,0,0,0,0,0,0,0,0,0] list_of_items = MyModel.objects.all() for item in list_of_items:

Re: bar charts

2011-11-07 Thread skysb...@gmail.com
On 2011?11?07? 21:26, Andre Terra wrote: Pass serialized json as a template variable? yes of course, pupulate data from django is not special, it's a normal process just like other language. we can output json to the chart That's what I'm doing atm. But JKM has built an app to help reduce the

Re: bar charts

2011-11-07 Thread kenneth gonsalves
On Mon, 2011-11-07 at 11:26 -0200, Andre Terra wrote: > Pass serialized json as a template variable? > > got it to work. I had passed the json, but had to turn autoescape off to get it to work. -- regards Kenneth Gonsalves -- You received this message because you are subscribed to the Google

Re: bar charts

2011-11-07 Thread bax...@gretschpages.com
Most times I just use css and percentwidth for simple bar charts. On Nov 7, 10:23 am, Leotis buchanan wrote: > You could also try processing.js > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, s

Re: bar charts

2011-11-07 Thread Leotis buchanan
You could also try processing.js Regards Leotis Buchanan Co-Founder Exterbox On Mon, Nov 7, 2011 at 9:22 AM, Yok Keen Hui wrote: > You could try out cairoplot, it works for me in Django, just have to print > the render as a picture to a url and reference it from there(looks nice > too!) > >

Re: bar charts

2011-11-07 Thread Brad Montgomery
+1 for Google Charts. For small stuff (1 chart), I just render JavaScript in the of my html templates. For more complex stuff, you could write a view that *just* renders JavaScript and include it via a script tag. Just make sure to serve it with MIME type "application/javascript"

Re: bar charts

2011-11-07 Thread Yok Keen Hui
You could try out cairoplot, it works for me in Django, just have to print the render as a picture to a url and reference it from there(looks nice too!) On Tue, Nov 8, 2011 at 12:26 AM, Andre Terra wrote: > Pass serialized json as a template variable? > > That's what I'm doing atm. But JKM has b

Re: bar charts

2011-11-07 Thread Andre Terra
Pass serialized json as a template variable? That's what I'm doing atm. But JKM has built an app to help reduce the need to write javascript [1]. I haven't used it myself, but it looks interesting and promising. Cheers, AT [1] https://github.com/jacobian/django-googlecharts On Mon, Nov 7, 201

Re: bar charts

2011-11-07 Thread Tim Sawyer
Flot. http://code.google.com/p/flot/ My docs about what I did: http://drumcoder.co.uk/tags/flot/ Example (including zooming by slider): http://brassbandresults.co.uk/bands/rothwell-temperance-band/ Enjoy, Tim. > hi, > > what do people use to display bar charts in their sites? >

Re: bar charts

2011-11-07 Thread kenneth gonsalves
On Mon, 2011-11-07 at 19:36 +0800, skysb...@gmail.com wrote: > On 2011年11月07日 18:16, kenneth gonsalves wrote: > > On Mon, 2011-11-07 at 04:28 -0500, Joey Espinosa wrote: > >> Here's the Quick Start page: http://goo.gl/g5I7X > > that is easy - how does one populate with data from django? > do you kn

Re: bar charts

2011-11-07 Thread skysb...@gmail.com
On 2011年11月07日 18:16, kenneth gonsalves wrote: On Mon, 2011-11-07 at 04:28 -0500, Joey Espinosa wrote: Here's the Quick Start page: http://goo.gl/g5I7X that is easy - how does one populate with data from django? do you know how to populate with data with other develop language?? -- You receiv

Re: bar charts

2011-11-07 Thread kenneth gonsalves
On Mon, 2011-11-07 at 04:28 -0500, Joey Espinosa wrote: > Here's the Quick Start page: http://goo.gl/g5I7X that is easy - how does one populate with data from django? -- regards Kenneth Gonsalves -- You received this message because you are subscribed to the Google Groups "Django users" group.

Re: bar charts

2011-11-07 Thread Joey Espinosa
om> <http://twitter.com/joelinux117><http://about.me/joelinux> On Mon, Nov 7, 2011 at 2:39 AM, kenneth gonsalves wrote: > On Mon, 2011-11-07 at 00:04 -0500, Kevin Anthony wrote: > > Google charts api > > > > > > any clues on how to integrate this with

Re: bar charts

2011-11-07 Thread skysb...@gmail.com
On 2011年11月07日 12:57, kenneth gonsalves wrote: hi, what do people use to display bar charts in their sites? a lot choices, like html5 chart, flash chart. amchart,zingchart, i'm trying to use zingchart in my site now, it provide both flash and html5 solution. -- You received this me

Re: bar charts

2011-11-06 Thread kenneth gonsalves
On Mon, 2011-11-07 at 00:04 -0500, Kevin Anthony wrote: > Google charts api > > any clues on how to integrate this with django? -- regards Kenneth Gonsalves -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to thi

Re: bar charts

2011-11-06 Thread Kevin Anthony
Google charts api Kevin Please excuse brevity, sent from phone On Nov 6, 2011 11:57 PM, "kenneth gonsalves" wrote: > hi, > > what do people use to display bar charts in their sites? > -- > regards > Kenneth Gonsalves > > -- > regards > Kenneth Gons

bar charts

2011-11-06 Thread kenneth gonsalves
hi, what do people use to display bar charts in their sites? -- regards Kenneth Gonsalves -- regards Kenneth Gonsalves -- 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@googlegrou

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 o

Re: How to draw line charts in Django?

2011-05-05 Thread Frank Becker
> what your needs are. [...] > matplotlib is incredibly hard to understand and doesn't follow the good > python package practices (not easy install compliant). > Use it at your own risks :) Well, there are folks having a lot of fun using matplotlib. It's not just for x/y charts. All Linux d

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 doe

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, Nge wrote: > > I already c

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, jQuery, and Flot to do some cha

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 t

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 d

Re: How to draw line charts in Django?

2011-05-05 Thread Nge
t; > 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 send it to the template > w

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 and s

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: gantt charts or timeline graphics

2011-02-15 Thread Xavier Ordoquy
Hi, Doesn't reportlab already provide imaging facilities that you are looking for ? Regards, Xavier. Le 16 févr. 2011 à 00:33, refreegrata a écrit : > Hello list, I have a question. I need to generate some gantt chart or > time line image to represent every step of an element in a process. I >

gantt charts or timeline graphics

2011-02-15 Thread refreegrata
Hello list, I have a question. I need to generate some gantt chart or time line image to represent every step of an element in a process. I already have saved the history, but I need represent this in a graphic. Somebody know some library to do something like this? The idea is build the graphic in

Re: django charts

2010-11-23 Thread Pablo Ilardi
My 2 cents, I'm using http://code.google.com/p/flot/ does the job on the browser side, you just have to pass it the data from django, it works very good and is cross browser. - Pablo On Nov 19, 3:56 am, Priya wrote: > Hi, > I am a new user to django ,can anybody please help me resolve this > iss

Re: django charts

2010-11-21 Thread rattanpriya bhasin
thank you so much.it was quite helpful. On Sat, Nov 20, 2010 at 6:40 PM, Darrel Herbst wrote: > I haven't used this, but this provides a way to interface with google > charts: > https://github.com/jacobian/django-googlecharts/blob/master/docs/examples.txt > > On Nov 19, 1

Re: django charts

2010-11-20 Thread Darrel Herbst
I haven't used this, but this provides a way to interface with google charts: https://github.com/jacobian/django-googlecharts/blob/master/docs/examples.txt On Nov 19, 1:56 am, Priya wrote: > Hi, > I am a new user to django ,can anybody please help me resolve this > issue.

Re: django charts

2010-11-19 Thread Anderson Goulart
I am not an expert on charts, but I am using highcharts.com to generate some. What I do here is: 1) get the data from the database inside the view (look for querysets on django-documentation) 2) render this data on a template 3) build the chart using this library inside the template bye

django charts

2010-11-19 Thread Priya
Hi, I am a new user to django ,can anybody please help me resolve this issue.I am trying to construct a Gant chart based on the certain constraints.Now i am unable to make a line of approach for this.I have defined a class for chart and defined function for it in views.Now how do i pass my values t

Re: django python pi-charts/graphs

2010-06-02 Thread Euan Goddard
I would recommend using google charts. There are a couple of python implementations for this. I've used GChartWrapper with some success, but found it a little clunky in its implementation. Euan On Jun 2, 7:35 am, rahul jain wrote: > Hi Django, > > I would like to represent my db

django python pi-charts/graphs

2010-06-01 Thread rahul jain
Hi Django, I would like to represent my db/model content in the form of pi-charts/graphs. Is there any django python module that already exists ? --RJ -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email

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: http://code.google.com/p/google-visualization-python

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

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 for Admin Interface

2009-02-15 Thread Alex Gaynor
On Sun, Feb 15, 2009 at 10:20 AM, Peter Herndon wrote: > > I don't have the URL handy, but the admin docs contain pointers on how > to add extra URLs to your admin site. Create a view, make a template, > add the URL, profit!! So if you want charts in your admin, such a >

Re: Charts for Admin Interface

2009-02-15 Thread Peter Herndon
I don't have the URL handy, but the admin docs contain pointers on how to add extra URLs to your admin site. Create a view, make a template, add the URL, profit!! So if you want charts in your admin, such a task is well within the capabilities of Django for you to add. On 2/13/09, R

Charts for Admin Interface

2009-02-13 Thread Robert
Dear Community, did ever anybody try to add charts (i.e. with ReportLab) to the admin interface? I think it would be a very nice feature to show statistics, ... First the user should be able to make some choices and then depending on these choices django should create a chart (values of course

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 promissing pa

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, a

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-edit

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

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. op

Re: Generating charts with ReportLab

2007-08-10 Thread [EMAIL PROTECTED]
> or just have a look through your gmail for *Re: Graphs and django.* > > > (The search string "contrib namespace r" worked for me.) > > > Ben > > > > On 30/07/07, David Reynolds <[EMAIL PROTECTED] > wrote: > > > > > On 28 Jul 20

Re: Generating charts with ReportLab

2007-08-06 Thread Ben Ford
for me.) > > Ben > > > > On 30/07/07, David Reynolds <[EMAIL PROTECTED] > wrote: > > > > > > > > > > > > > On 28 Jul 2007, at 4:34 am, [EMAIL PROTECTED] wrote: > > > > > > I had the need to generate a few different

Re: Generating charts with ReportLab

2007-07-30 Thread [EMAIL PROTECTED]
d Reynolds <[EMAIL PROTECTED] > wrote: > > > > > > > On 28 Jul 2007, at 4:34 am, [EMAIL PROTECTED] wrote: > > > > I had the need to generate a few different types of charts using > > > ReportLab. The wiki only had a sample of a Horizontal Bar Chart,

Re: Generating charts with ReportLab

2007-07-30 Thread Ben Ford
: > > > On 28 Jul 2007, at 4:34 am, [EMAIL PROTECTED] wrote: > > > > > I had the need to generate a few different types of charts using > > ReportLab. The wiki only had a sample of a Horizontal Bar Chart, so > > I've added a new sample on how to produce a Line

Re: Generating charts with ReportLab

2007-07-30 Thread David Reynolds
On 28 Jul 2007, at 4:34 am, [EMAIL PROTECTED] wrote: I had the need to generate a few different types of charts using ReportLab. The wiki only had a sample of a Horizontal Bar Chart, so I've added a new sample on how to produce a Line Chart... http://code.djangoproject.com/wiki/Chart

Generating charts with ReportLab

2007-07-27 Thread [EMAIL PROTECTED]
I had the need to generate a few different types of charts using ReportLab. The wiki only had a sample of a Horizontal Bar Chart, so I've added a new sample on how to produce a Line Chart... http://code.djangoproject.com/wiki/Charts If anyone is interested in a sample for a Pie or Scatter