<script src="RGraph.common.core.js"></script> <script src="RGraph.common.dynamic.js"></script> <script src="RGraph.bar.js"></script>Put this where you want the chart to show up:
<canvas id="cvs" width="600" height="250"> [No canvas support] </canvas>This is the code that generates the chart:
<script> window.onload = function () { var bar = new RGraph.Bar({ id: 'cvs', data: [12,13,16,15,16,19,19,12,23,16,13,24], options: { textAccessible: true, gutterLeft: 35, colors: ['red'], title: 'A basic chart', labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] } }).draw() bar.$2.onclick = function (e, shape) { alert('The third bar was clicked.'); } bar.$2.onmousemove = function (e, shape) { return true; } }; </script>