Built with blockbuilder.org
forked from jwilber's block: roughViz Pie Demo
| license: mit |
Built with blockbuilder.org
forked from jwilber's block: roughViz Pie Demo
| <!DOCTYPE html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <script src="https://unpkg.com/[email protected]"></script> | |
| <style> | |
| .wrapper { | |
| display: flex; | |
| flex: wrap; | |
| order: row; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <br><br> | |
| <div class="wrapper"> | |
| <div id="vis1"></div> | |
| </div> | |
| <script> | |
| new roughViz.Donut( | |
| { | |
| element: '#vis1', | |
| data: { | |
| labels: ['אדום', 'צהוב', 'ירוק', 'לבן'], | |
| values: [1, 1, 8, 1] | |
| }, | |
| title: "צבעים שתום אכל", | |
| width: window.innerWidth / 2, | |
| roughness: 1, | |
| colors: ['red', 'yellow', 'green', '#d5dbe3'], | |
| stroke: 'black', | |
| strokeWidth: 8, | |
| fillStyle: 'cross-hatch', | |
| fillWeight: 3.5, | |
| } | |
| ); | |
| </script> | |
| </body> | |