Grafico 2.2

author(s): JLFN

by Jose Luis Fernández

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>

<div id="container" style="min-width: 310px; height: 600px; margin: 0 auto"></div>

JavaScript

Highcharts.chart('container', {
    chart: {
        type: 'line'
    },
    title: {
        text: 'Evolución de Publicaciones'
    },
    subtitle: {
        text: '% España frente al Mundo'
    },
    xAxis: {
        categories: ['2009', '2010', '2011', '2012', '2013', '2014', '2015']
    },
    yAxis: {
        title: {
            text: '% Publicaciones de España/Mundo'
        }
    },
    plotOptions: {
        line: {
            dataLabels: {
                enabled: false
            },
            enableMouseTracking: true
        }
    },
    series: [{
        name: 'Publicacoines Envejecimiento',
        data: [3.46, 3.45, 3.53, 3.64, 3.64, 3.94, 4.00]
    }, {
        name: 'Publicaciones Totales',
        data: [3.11, 3.26, 3.34, 3.33, 3.34, 3.38, 3.53]
    }]
});