my personal javascript graph library
JavaScript
Switch branches/tags
Nothing to show
Clone or download
carview.php?tsp= Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
carview.php?tsp= README add example url Feb 14, 2010
carview.php?tsp= canvastext.js first commit Feb 14, 2010
carview.php?tsp= p5-js-graph.js first commit Feb 14, 2010
carview.php?tsp= processing.js first commit Feb 14, 2010

README

var canvas = document.getElementById("canvas");
var p = new P5JsGraph();
p.canvas(canvas);
p.set_size(300,200);
var obj = {"x_axis": [0,"hoge","fuga",3,4,5], "y_axis": [0,10,30], "values" : { "hoge": [0, 10,15,20,10,10], "fuga": [0, 5,20,10,0,30] } };
p.set_data(obj);
p.linechart();
https://skitch.com/soh335/ni84k/mozilla-firefox