Dossiers centralisés
author(s): Corinne Kubler
by corinnekm
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/drilldown.js"></script>
<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>
JavaScript
$(function () {
// Create the chart
$('#container').highcharts({
chart: {
type: 'column'
},
title: {
text: 'Nombre de dossiers centralisés avec succès'
},
xAxis: {
type: 'category'
},
plotOptions: {
series: {
borderWidth: 0,
dataLabels: {
enabled: true
}
}
},
series: [{
name: 'Nombre de dossiers centralisés',
data: [{
name: 'Infogreffe Informatique',
y: 14831,
drilldown: 'republican-2010'
}, {
name: 'GAGI',
y: 2002,
drilldown: 'democrats-2010'
}, {
name: 'PARIS',
y: 1785,
drilldown: 'other-2010'
},
{
name: 'AGORA',
y: 29920,
drilldown: 'other-2014'
},
{
name: 'INTERGREFFE',
y: 6037,
drilldown: 'other-2014'
}]
}]
});
});