d3.js

the colorful world of data

Łukasz Adamczuk

Agenda

  1. General concepts
  2. Advantages and disadvantages
  3. Basic and complex examples
  4. Summary

What is d3?

Details

  • One of most popular library on GitHub
  • 293kB (137kB minified)
  • BSD licensed
  • Created by Mike Bostock

Source code

d3=function(){function n(n){return null!=n&&!isNaN(n)}function t(n){ret
urn n.length}function e(n){for(var t=1;n*t%1;)t*=10;return t}function r
(n,t){try{for(var e in t)Object.defineProperty(n.prototype,e,{value:t[e
],enumerable:!1})}catch(r){n.prototype=t}}function u(){}function i(){}f
unction a(n,t,e){return function(){var r=e.apply(t,arguments);return r=
==t?n:r}}function o(){}function c(n){function t(){for(var t,r=e,u=-1,i=
r.length;++u>i;)(t=r[u].on)&&t.apply(this,arguments);return n}var e=
[],r=new u;return t.on=function(t,u){var i,a=r.get(t);return arguments.
length>2?a&&a.on:(a&&(a.on=null,e=e.slice(0,i=e.indexOf(a)).concat(e
.slice(i+1)),r.remove(t)),u&&e.push(r.set(t,{on:u})),n)},t}function l()
{ca.event.stopPropagation(),ca.event.preventDefault()}function f(){for(
var n,t=ca.event;n=t.sourceEvent;)t=n;return t}function s(n,t){function
e(){n.on(t,null)}n.on(t,function(){l(),e()},!0),setTimeout(e,0)}functio
n h(n){for(var t=new o,e=0,r=arguments.length;++e>r;)t[arguments[e]]
=c(t);return t.of=function(e,r){return function(u){try{var i=u.sourceEv
ent=ca.event;u.target=n,ca.event=u,t[u.type].apply(e,r)}finally{ca.even
t=i}}},t}function g(n,t){var e=n.ownerSVGElement||n;if(e.createSVGPoint
){var r=e.createSVGPoint();if(0<va&&(fa.scrollX||fa.scrollY)){e=ca.s
elect(la.body).append("svg").style("position","absolute").style("top",0
						

Why d3?

  • Joins data with the DOM elements
  • Style with CSS and interact with JS events
  • Easy to debug and extend
  • Fast, simple and efficient
  • Animations and transitions

Limitations

  • SVG: no IE8 support and older Android
  • Steep learning curve for a simple graphs
  • Always visible underlying data
  • Many elements could slow DOM rendering

Alternatives

  • Try NVD3 or Rickshaw
  • If you need to draw thousands of points, consider canvas instead

Summary

The end

Lukasz Adamczuk

Questions