%España/Mundo
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: 400px; margin: 0 auto"></div>
JavaScript
Highcharts.chart('container', {
chart: {
type: 'line'
},
title: {
text: 'Investigación de España frente al Mundo'
},
subtitle: {
text: '% de lo que supone la investigación Española en la investigación Mundial'
},
xAxis: {
categories: ['2009', '2010', '2011', '2012', '2013', '2014', '2015']
},
yAxis: {
title: {
text: 'publicaciones españolas/mundo (%)'
}
},
plotOptions: {
line: {
dataLabels: {
enabled: false
},
enableMouseTracking: true
}
},
series: [{
name: '% de publicaciones totales',
data: [3.11, 3.26, 3.34, 3.33, 3.34, 3.38, 3.53]
}, {
name: '% de publicaciones sobre envejecimiento',
data: [3.46, 3.45, 3.53, 3.64, 3.64, 3.94, 4]
}]
});