JSFiddle - React, Tailwind, and code Playground
by Rajesh Danabal
HTML
<script src="https://code.highcharts.com/3.0.1/highcharts.src.js"></script>
<div id="container" style="width: 550px; height: 400px; margin: 0 auto"></div>
JavaScript
$(function() {
$('#container').highcharts({
chart: {
type: 'column'
},
title: {
text: 'Stacked column chart'
},
xAxis: {
categories: ['ApplesApplesApplesApples', 'OrangesOrangesOrangesOranges', 'PearsPearsPearsPears', 'GrapesGrapesGrapesGrapes', 'BananasBananasBananasBananas'],
labels: {
formatter: function() {
console.log("this", this);
var ret = this.value,
len = ret.length;
console.log(len);
if( len > 10 ) {
ret = ret.slice(0,10) + '<br/>' + ret.slice(10, len);
}
if( len > 25 ) {
ret = ret.slice(0,25) + '...';
}
console.log(ret);
return ret;
}
}
},
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',
style: {
textShadow: '0 0 3px black'
}
}
}
},
series: [{
name: 'John',
data: [5, 3, 4, 7, 2]
}, {
name: 'Jane',
data: [2, 2, 3, 2, 1]
}, {
name: 'Joe',
data: [3, 4, 4, 2, 5]
}]
});
});