<script src="RGraph.svg.common.core.js"></script> <script src="RGraph.svg.bar.js"></script>Put this where you want the chart to show up:
<div style="padding: 15px"> <div style="width: 750px; height: 300px" id="chart-container"></div> </div>This is the code that generates the chart:
<script> new RGraph.SVG.Bar({ id: 'chart-container', 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: { hmargin: 10, xaxisLabels: [ 'Jan `15','', 'Mar `15','', 'May `15','', 'Jul `15','', 'Sep `15','', 'Nov `15','', 'Jan `15','', 'Mar `15','', 'May `15','', 'Jul `15','' ], title: 'A basic Bar chart', colors: ['Gradient(#c00:#fff)'], yaxisMax: 250, yaxisUnitsPost: '.000', yaxis: false, xaxis: false, colors: ['#000','#2F8DCD'], gutterLeft: 75, textSize: 10, textColor: 'gray', backgroundGridVlines: false, backgroundGridBorder: false, title: 'Fluchtlinge kommen wieder u ber Italien', titleX: 75, titleY: 0, titleHalign: 'left', titleColor: '#999' } }).grow({frames: 100}); </script>