Upgrade to Pro — share decks privately, control downloads, hide ads and more …

D3.js - Data-Driven Documents

D3.js - Data-Driven Documents

Introductory talk about D3.js at Georgian Front-end Developers Meet-up #2.

Some example charts by @ireneros.

Levan Velijanashvili

June 27, 2015
Tweet

More Decks by Levan Velijanashvili

Other Decks in Technology

Transcript

  1. d3.selectAll("ul li") .data([293, 12, 6, 89, 11]) .style("width", function (d)

    { return (d * 10) + "px"; }) .style("color", "red") .enter() .style("color", "lime") DATA BINDING