Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 339 Bytes

README.md

File metadata and controls

12 lines (8 loc) · 339 Bytes

ez-d3-graphs

Easy wrappers to help generate lovely graphs with d3 and svg.

See examples: http://mikejestes.github.io/ez-d3-graphs/

Simple Examples

var dataArray = [4,9,7,2,1,2,6,4,8,9,3];

var graph = new ezD3Graphs.ComboGraph('#element', 300, 100);
graph.add( new ezD3Graphs.BarGraph(dataArray) );
graph.render();