D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
mattborn
Full window
Github gist
Inline Style Examples
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Inline Style Examples</title> <style> body { background: #222; margin: 0; } </style> </head> <body> <div id="root"></div> <script src="https://jspm.io/system@0.19.js"></script> <script> System.config({ baseURL: '.', transpiler: 'babel', babelOptions: { optional: [ 'runtime' ], blacklist: [] }, map: { 'radium': 'npm:radium@0.16.5', 'react': 'npm:react@0.14.7', 'react-dom': 'npm:react-dom@0.14.7', }, paths: { '*': '*.js' } }); System.import('Main'); </script> </body> </html>
https://jspm.io/system@0.19.js