Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/soh335/p5-js-graph

my personal javascript graph library
https://github.com/soh335/p5-js-graph

Last synced: 14 days ago
JSON representation

my personal javascript graph library

Awesome Lists containing this project

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();

http://skitch.com/soh335/ni84k/mozilla-firefox