A Radial Scatter chart with a connecting line
This goes in the documents header:
<script src="RGraph.common.core.js"></script>
<script src="RGraph.rscatter.js"></script>
Put this where you want the chart to show up:
<canvas id="cvs" width="500" height="500">
[No canvas support]
</canvas>
This is the code that generates the chart:
<script>
data = [[252,63],[293,63],[5,80],[85,63],[95,65]];
data2 = [[65,85],[174,85],[186,53],[226,65],[274,56]];
data3 = [[115,23],[185,42],[210,23],[223,23],[254,56]];
new RGraph.Rscatter({
id: 'cvs',
data: [data,data2, data3],
options: {
line: true,
lineColors: ['red', 'green', 'blue'],
lineClose: [false, false],
lineLinewidth: 2,
lineShadow: true,
lineShadowOffsetx: 1,
lineShadowOffsety: 1,
lineShadowBlur: 3,
tickmarks: null,
labelsAxes: 'n',
axesColor: 'rgba(0,0,0,0)'
}
}).draw();
</script>