partidos sentenciados
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: 310px; max-width: 800px; height: 500px; margin: 0 auto"></div>
JavaScript
$(function () {
$('#container').highcharts({
chart: {
type: 'bar'
},
title: {
text: 'Número de candidatos con sentencias penales y/o civiles. Agrupados por organización política.'
},
subtitle: {
text: 'Candidatos a elecciones municipales y regionales 2014'
},
xAxis: {
categories: [
'ALIANZA PARA EL PROGRESO',
'FUERZA POPULAR',
'SOMOS PERU',
'ACCION POPULAR',
'UNION POR EL PERU',
'APRA',
'PATRIA JOVEN',
'SOLIDARIDAD NACIONAL',
'PPC',
'SIEMPRE UNIDOS',
'PARTIDO HUMANISTA PERUANO',
'ALIANZA RENACE AYACUCHO',
'PERU POSIBLE',
'VAMOS PERU',
'MOV. INDEP. REG. RIO SANTA CAUDALOSO',
'MOV. INTEGRACION LORETANA',
'MOV. POPULAR KALLPA',
'SENTIMIENTO AMAZONENSE REGIONAL',
'MOV. REG. ACUERDO POPULAR UNIFICADO',
'MOV. REG. FUERZA AMAZONENSE',
],
title: {
text: null
},
labels: {
overflow: true
},
},
yAxis: {
min: 0,
title: {
text: 'Número de sentenciados',
align: 'high'
},
labels: {
overflow: false
}
},
tooltip: {
valueSuffix: ''
},
plotOptions: {
bar: {
dataLabels: {
enabled: true
}
}
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'top',
x: -10,
y: 350,
floating: true,
borderWidth: 1,
backgroundColor:...