<script src="RGraph.common.core.js"></script> <script src="RGraph.common.key.js"></script> <script src="RGraph.bar.js"></script>Put this where you want the chart to show up:
<div style="padding-left: 35px"> <canvas id="cvs" width="950" height="350">[No canvas support]</canvas> </div>This is the code that generates the chart:
<script> new RGraph.Bar({ id: 'cvs', data: [ [1.694,3.528],[2.873,4.354], [7.874, 2.283],[13.556,16.063], [17.889,21.235],[31.318,22.891], [54.899,23.186],[107.843,22.609], [147.123,15.922],[211.663,8.916], [151.249,3.218],[108.742,9.637], [67.415,5.273],[57.066,3.828], [26.971,9.676],[3.650,9.149], [1.721,19.925],[1.554,22.371], [1.920,23.552],[3.447,21.294] ], options: { key: ['Griechenland', 'Italien'], keyPosition: 'gutter', keyPositionY: 325, gutterBottom: 50, ymax: 250, unitsPost: '.000', colors: ['#000','#2F8DCD'], labels: [ 'Jan `15','', 'Mar `15','', 'May `15','', 'Jul `15','', 'Sep `15','', 'Nov `15','', 'Jan `15','', 'Mar `15','', 'May `15','', 'Jul `15',''], textSize: 10, textColor: 'gray', hmargin: 10, backgroundGridVlines: false, backgroundGridBorder: false, noaxes: true, title: 'Fluchtlinge kommen wieder u ber Italien', titleX: -35, titleY: 0, titleHalign: 'left', titleColor: '#999', ylabelsOffsetx: -10 } }).grow({frames: 60}); </script>