A super lightweight pure javascript plug in for easily making html5 graphs that look great!
The files need for installation are located at /dist
To use material graph simply import the MaterialGraph.min.js file in to your project and then create a new instance of the Graph class. The graph class constructor takes two arguments, a string for the element you want to reference and a dataset.
vardataset=[{x: 0,y:0},{x: 2,y:3},{x: 7,y: 5}];vargraph=newGraph('#canvas',dataset);//Get the graph readyvargraph.init();// Draw the graphMIT © Dominic Valenciana