Fork me on GitHub

vizkit documentation

vizkit.js is an opinionated little charting library built on top of the amazing and wonderful d3.js visualization framework.


Live Data

EXAMPLE CODE

To make a vizkit chart responsive just remove the chart and redrawing it when the window is resized:

window.onresize = function(event) {
  d3.select('.viz svg').remove();
  DrawViz(d3.select('.viz'));
}