A Bar chart with long labels

[No canvas support]

This goes in the documents header:
<script src="RGraph.common.core.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>
    data = [[4,5,3],[4,8,6],[4,2,4],[4,2,3],[1,2,3],[8,8,4],[4,8,6]];

    new RGraph.Bar({
        id:'cvs',
        data: data,
        options: {
            xaxisLabels: [
                'Mondays sales',
                '\r\nTuesdays sales',
                'Wednesdays sales',
                '\r\nThursdays sales',
                'Fridays sales',
                '\r\nSaturdays sales',
                'Sundays sales'
            ],
            colors: ['red','yellow', 'pink'],
            grouping: 'stacked',
            marginLeft: 100,
            marginRight: 5,
            marginTop: 5,
            marginBottom: 105,
            xaxisLabelsAngle: 45,
            colorsStroke: 'rgba(0,0,0,0)',
            backgroundGridVlinesCount: 7,
            xaxisLabelsOffsety: 7
        }
    }).draw();
</script>