A Bar chart with animated Pie chart

This demo shows a simple effect using the Pie chart RoundRobin effect.

[No canvas support]

This goes in the documents header:
<script src="RGraph.common.core.js"></script>
<script src="RGraph.common.effects.js"></script>
<script src="RGraph.pie.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,4,5,6,8,5,3],
        options: {
            marginBottom: 40,
            xaxisLabels: ['Monday','\r\nTuesday','Wednesday','\r\nThursday','Friday','\r\nSaturday','Sunday'],
            colorsStroke: 'rgba(0,0,0,0)',
            backgroundGridVlines: false,
            backgroundGridBorder: false,
            yaxis: false
        }
    }).draw();
    
    new RGraph.Pie({
        id: 'cvs',
        data: [4,8,6],
        options: {
            centerx: 60,
            centery: 60,
            radius: 25,
            exploded: [5],
            colorsStroke: 'rgba(0,0,0,0)',
            shadow: true,
            colorsStroke: '#fff',
            linewidth: 1
        }
    }).roundRobin({frames: 60});
</script>