D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
darshit-shah
Full window
Github gist
Word Cloud
Word Cloud
<html> <head> <style> @import url("index.css"); #legend { display:inline; white-space:nowrap; padding:0px; } #legend li { display:inline; padding: 0px 10px; } #legend li span { margin-right:5px; padding:0px; } </style> </head> <body> <div id="header" style="padding: 5px 20px;"> <input type="file" id="fileinput" /> <ul id="legend"></ul> <input id="search" type="text" name="search" placeholder="Search..." tabindex="1" style="float: right;"> </div> <div id="g-chart" style="margin: 5px 20px;"> </div> <script src="d3.v3.min.js" charset="utf-8"></script> <script src="wordCount.js"></script> <script src="data.js"></script> </body> </html>