Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/soh335/p5-js-graph
- Owner: soh335
- Created: 2010-02-14T02:51:21.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2010-02-14T03:51:51.000Z (almost 15 years ago)
- Last Synced: 2024-10-11T21:11:51.022Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 89.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
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