User:Themsen/Protclass7: Difference between revisions

From XPUB & Lens-Based wiki
(Created page with "words.html <meta charset="utf-8" /> <script src="d3.min.js"></script> <body> <div id="content"></div> </body> <script> d3.json("words2.json", function (data) { c...")
 
No edit summary
Line 5: Line 5:
   
   
  <div id="content"></div>
  <div id="content"></div>
 
  </body>
  </body>
  <script>
  <script>
Line 22: Line 22:
return d.count
return d.count
})
})
 
  })
  })
 
  </script>
  </script>

Revision as of 20:17, 28 April 2015

words.html

<meta charset="utf-8" />
<script src="d3.min.js"></script>
<body>

</body>
<script>

d3.json("words2.json", function (data) {

console.log("loaded", data); d3.select("#content") .selectAll("span") .data(data) .enter() .append("span") .text(function(d) { return d.word + " " }) .style("font-size", function(d) { return d.count })

})

</script>