<script src="RGraph.common.core.js"></script> <script src="RGraph.common.dynamic.js"></script> <script src="RGraph.line.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 line = new RGraph.Line({ id: 'cvs', data: [4,8,3,4,6,9,5], options: { textAccessible: true, labels: ['Pete','Lou','Pob','Luis','Barney','Fred','Wilma'] } }).draw(); line.$2.onclick = function (e, shape) { alert('The third point has been clicked'); } line.$2.onmousemove = function (e, shape) { return true; } }; </script>