database -> model -> charting

2013-06-07 Thread tony gair
I would like to hear peoples opinions on third party django charting apps, with various considerations. My primary consideration would ease of use by a django noob. Thanks -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from t

Re: database -> model -> charting

2013-06-07 Thread Christian Schulz
When you have some experience with JS/Highcharts django-chartit might be interesting. Easy is relativ but I got it and I'm really not a django/JS pro. It's nice work, but dev progress seems fallen asleep. http://chartit.shutupandship.com/ I would like to hear peoples opinions on third part

Re: database -> model -> charting

2013-06-07 Thread tony gair
Been trying out a couple over the last few hours. I have to say, the one you mention seems streets ahead of anything else, and its documented really well, which is the clincher for me. Many thanks for that super helpful info! On Friday, 7 June 2013 11:33:07 UTC+1, Christian Schulz wrote: > > Whe

Re: database -> model -> charting

2013-06-07 Thread Jani Tiainen
On Fri, 7 Jun 2013 01:20:27 -0700 (PDT) tony gair wrote: > > > I would like to hear peoples opinions on third party django charting apps, > with various considerations. My primary consideration would ease of use by > a django noob. Thanks > You can quite easily use pretty much any JS chartin

Re: database -> model -> charting

2013-06-08 Thread tony gair
After trying this I find a problem with the types it can use. For example it does not seem to like BigIntegerField unless there is something else I am doing wrong. Thinking about it, maybe I am letting chartit do too much for me but I do like the idea of something doing the hard thinking for me

Re: database -> model -> charting

2013-06-10 Thread Christian Schulz
I installed with python2.7/1.4.5 some weeks ago , but I didn't use a BigIntegerField. What is your error message? After trying this I find a problem with the types it can use. For example it does not seem to like BigIntegerField unless there is something else I am doing wrong. Thinking about

Re: database -> model -> charting

2013-06-10 Thread tony gair
TypeError at /heating/chart/ __init__() got an unexpected keyword argument 'use_decimal' Request Method: GET Request URL: http://127.0.0.1:8000/heating/chart/ Django Version: 1.5.1 Exception Type: TypeError Exception Value: __init__() got an unexpected keyword argument 'use_decimal' Exception Loca

Re: database -> model -> charting

2013-06-10 Thread Christian Schulz
It could be a problem with the simpleson.dumps options in django 1.5 vs. the included simplejson. I remember there was something... Change: chartit/templatetags/chartit.py - from django.utils import simplejson +import simplejson TypeError at /heating/chart/ __init__() got an unexpected key

Re: database -> model -> charting

2013-06-10 Thread tony gair
I tried that on 1.5 and tried my code out in a 1.4 install. I get the same error. Interestingly in stack overflow they mention this problem at http://stackoverflow.com/questions/8644060/caught-typeerror-while-rendering-init-got-an-unexpected-keyword-argument and chartit in its own code seems to

Re: database -> model -> charting

2013-06-10 Thread tony gair
I have subsequently located the problem. I think where the chartit.py supplies a parameter saying use_decimal=true is wrong. I have removed that parameter and found that it works with that change. Do you know if this is because of updates to jquery? On Monday, June 10, 2013 12:38:02 PM UTC, to

Re: database -> model -> charting

2013-06-10 Thread Christian Schulz
Hmm , don't know I'm not so much a js/jquery guy. But here is something about this issue. https://github.com/django/django/commit/5003df3659 I have subsequently located the problem. I think where the chartit.py supplies a parameter saying use_decimal=true is wrong. I have removed that paramet