javascript - JS:Specific weight chart -
firstly understand issue should see pricture in link below :
http://www.hostfile.nl/fpimages/03bkr5tq46/16043/screenshot.jpeg.html
the idea , issue create chart of weight such picture or site http://www.loseit.com/#goals , description :
1- chart contain 2 lines : 1 - record today's weight , 2- goal weight.
2- can record everyday today's weight , when click "record" button directly see new line added in chart in space of today (you can see picture )
what need example or code of chart same fonctionality,really i'm not professional in javascript code?
you can use flot (javascript library jquery generate charts)
// null signifies separate line segments var mydata = [[0, 12], [7, 12], null, [7, 2.5], [12, 2.5]]; var mygoal = [[0, 20], [12, 20]] $.plot($("#mychart"), [ mydata, mygoal ]);
check out example : http://refork.com/xa2e
Comments
Post a Comment