http://blog.cambridgecoding.com/2016/02/07/eda-and-interactive-figures-with-plotly/
http://2014.pycon.se/assets/slides/Plotly-Pycon-Sweden.pdf
Plotly
https://github.com/plotly/plotly.js
http://blog.cambridgecoding.com/2016/02/07/eda-and-interactive-figures-with-plotly/
Most plotly graphs are drawn with SVG. This offers great compatibility across browsers and publication-quality vector image export. Unfortunately, there are inherent performance limitations with the number of SVG elements that you can draw in the DOM.
plotly.js uses stack.gl for high performance 2D and 3D charting.
<!DOCTYPE html>
<html>
<head>
<div id="tester" style="width:600px;height:250px;"></div>
<script src="plotly-latest.min.js"></script>
<script>
TESTER = document.getElementById('tester');
Plotly.plot( TESTER, [{
x: [1, 2, 3, 4, 5],
y: [1, 2, 4, 8, 16] }], {
margin: { t: 0 } } );
</script>
</head>
<body>
</body>
</html>