A pretty standard stacked bar chart (which happens to use the hungarian language) which uses the grow effect, uses a title, a subtitle and has units appended to the Y axis labels.
This goes in the documents header:<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="width: 950px; height: 300px" id="chart-container"></div>This is the code that generates the chart:
<script> new RGraph.SVG.Bar({ id: 'chart-container', data: [[19.809672,2.309533,1.576628],[20.831782,1.638780,1.529451],[22.933183,2.340360,3.277996],[19.775762,3.369877,1.927770],[34.897281,3.093969,2.672899],[33.971873,2.319708, 4.064356]], options: { title: 'A magyarorszagi csomagforgalom alakulasa', titleSubtitle: 'Darabszamok a versenypiaci szolgaltatasban. Forras: NMHH', colors: ['#8EC3A7','#DC5356','#F0CB69'], grouping: 'stacked', colorsStroke: 'white', xaxisLabels: ['2010','2011','2012','2013','2014','2015'], yaxisScaleMax: 50, yaxisColor: 'transparent', yaxisScaleUnitsPost: 'm', xaxisColor: 'transparent', textSize: 10, textColor: '#999', backgroundGridVlines: false, backgroundGridBorder: false, hmargin: 40, marginTop: 50, marginLeft: 50 } }).grow(); </script>