A little premise: I'm on a diet and I'm trying to draw a chart of my weight loss.
To do that, I'm using a little django app to store the weight readings, and gRaphael (http://g.raphaeljs.com/) charting library to draw the reports. You can see the wip here: http://www.totanus.net/weight/
At this time I'm printing dates in the X-axis using 'ymd' format to order them properly, but I'm not quite satisfied (actually I'm not even sure that chart is correct at all...) and I'm wondering if there is a better way to render the dates.
The main questions are:
- Is there a way to use different labels other than '100610' or '20100610'?
- Is there a way to set fixed x and y axis labels every n-days or n-kg?
- can you suggest me some best practice in rendering this kind of chart (I'm particularly interested in calculating my overall trend)
Thank you in advance for any help!
Teo