D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
Mbrownshoes
Full window
Github gist
embed test
<!DOCTYPE html> <style> </style> <div class="notebook-content"> </div> <script type="module"> import notebook from "https://api.observablehq.com/@bumbeishvili/jsfiddle-embed-notebook.js"; // "download code" url document.querySelector('.notebook-content').innerHTML =notebook.modules[0].variables .filter(d=>d) .map((d,i)=>` <div class=" observable-wrapper div-number-${i}"></div>`) .join(''); import {Inspector, Runtime} from "https://unpkg.com/@observablehq/runtime@3/dist/runtime.js"; let i=1; Runtime.load(notebook, (variable) => { return new Inspector(document.querySelector(`.observable-wrapper:nth-child(${i++})`)); }); </script>