<script src="RGraph.common.core.js"></script> <script src="RGraph.common.dynamic.js"></script> <script src="RGraph.semicircularprogress.js"></script>Put this where you want the chart to show up:
<canvas id="cvs" width="300" height="200"> [No canvas support] </canvas>This is the code that generates the chart:
<script> new RGraph.SemiCircularProgress({ id: 'cvs', min: 0, max: 100, value: 83, options: { gutterTop: 10, gutterLeft: 10, gutterRight: 10, adjustable: true, unitsPost: '%', textAccessiblePointerevents: false, colors: ['Gradient(white:#0a0)'] } }).draw(); </script>