Highcharts.chart(‘container’, {
chart: {
type: ‘column’
},
title: {
text: ‘¿QUIEN TIENE MÁS FRUTAS?’
},
xAxis: {
categories: [‘Manzanas’, ‘Naranjas’, ‘Peras’, ‘Cerezas’, ‘Bananas’] },
yAxis: {
min: 0,
title: {
text: ‘Total fruit consumption’
},
stackLabels: {
enabled: true,
style: {
fontWeight: ‘bold’,
color: (Highcharts.theme && Highcharts.theme.textColor) || ‘gray’
}
}
},
legend: {
align: ‘right’,
x: -30,
verticalAlign: ‘top’,
y: 25,
floating: true,
backgroundColor: (Highcharts.theme && Highcharts.theme.background2) || ‘white’,
borderColor: ‘#CCC’,
borderWidth: 1,
shadow: false
},
tooltip: {
headerFormat: ‘<b>{point.x}</b><br/>’,
pointFormat: ‘{series.name}: {point.y}<br/>Total: {point.stackTotal}’
},
plotOptions: {
column: {
stacking: ‘normal’,
dataLabels: {
enabled: true,
color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || ‘white’
}
}
},
series: [{
name: ‘Gus’,
data: [40, 3, 4, 7, 2] }, {
name: ‘Agus’,
data: [2, 2, 3, 2, 1] }, {
name: ‘Aye’,
data: [3, 4, 4, 2, 5] }, {
name: ‘Flavio’,
data: [3, 4, 4, 2, 5] }] });

Compartir