Highcharts test tool

by Jesper Brinch Korsbakke

HTML

<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="min-width: 300px; height: 300px; margin: 1em"></div>

JavaScript

$('#container').highcharts({
    chart: {
        type: 'area'
    },
    plotOptions: {
          area: {
            stacking: 'normal',
            lineColor: '#666666',
            lineWidth: 1,
            marker: {
              lineWidth: 1,
              lineColor: '#666666'
            },
              pointPlacement: 'on'
          }
        },
    xAxis: {
        categories: ['2013', '2030'],
        //min: 0,
        //max: 1
    },
    series: [{
        name: 'Nybyggt',
        data: [0, 385000]
    }, {
        name: 'Befintligt',
        data: [1680000, 1495000]
    }],
    yAxis: {
        title: {
            text: 'm2',
            offset: 50
        }
    },
});