A basic example of the drawing API poly object
This goes in the documents header:
<script src="RGraph.common.core.js"></script>
<script src="RGraph.common.dynamic.js"></script>
<script src="RGraph.common.tooltips.js"></script>
<script src="RGraph.drawing.poly.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>
new RGraph.Bar({
id: 'cvs',
data: [5,8,6,4,3,5,2],
options: {
hmargin: 5,
xaxisLabels: ['Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday']
}
}).grow();
new RGraph.Drawing.Poly({
id: 'cvs',
coords: [[50,25],[100,75],[75,125],[25,125],[25,75],[50,25]],
options: {
colorsStroke: ['black'],
colorsFill: ['rgba(255,128,128,0.5)'],
tooltips: ['Lou'],
textAccessiblePointerevents: false
}
}).draw();
</script>