D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
jwilber
Full window
Github gist
roughViz Pie Demo
Built with
blockbuilder.org
<!DOCTYPE html> <head> <meta charset="utf-8"> <script src="https://unpkg.com/rough-viz@1.0.4"></script> <style> .wrapper { display: flex; flex: wrap; order: row; } </style> </head> <body> <br><br> <div class="wrapper"> <div id="vis0"></div> <div id="vis1"></div> </div> <script> new roughViz.Pie( { element: '#vis0', titleFontSize: '1.5rem', margin: {top: 50, bottom: 100, left: 40, right: 100}, data: { labels: ['yes', 'no', 'lol idk man'], values: [2, 8, 4] }, title: "'Yarn Plot': Useful?", roughness: 25, strokeWidth: 5, innerStrokeWidth: 5, } ); new roughViz.Pie( { element: '#vis1', titleFontSize: '1.5rem', legend: false, margin: {top: 50, bottom: 100, left: 40, right: 100}, data: { labels: ['useful', 'no', 'lol idk man'], values: [2, 8, 4] }, strokeWidth: 3, fillStyle: 'zigzag-line', highlight: 'gold', } ); </script> </body>
https://unpkg.com/rough-viz@1.0.4