<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/stock/modules/data.js"></script>
<div id="parentContainer">
<div id="container"></div>
<div id="play-controls">
<button id="play-pause-button" class="fa fa-play" title="play"></button>
<input id="play-range" type="range" value="1960" min="1960" max="2018" />
</div>
</div>
@import "https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css";
#parentContainer {
height: 10000px;
}
#container {
height: 900px;
}
#play-controls {
position: absolute;
left: 100px;
top: 30px;
}
#play-pause-button {
width: 30px;
height: 30px;
cursor: pointer;
border: 1px solid silver;
border-radius: 3px;
background: #f8f8f8;
}
#play-range {
transform: translateY(2.5px);
}
var initialData,
chart;
const startYear = 1960,
endYear = 2018,
btn = document.getElementById('play-pause-button'),
input = document.getElementById('play-range'),
nbr=20;
/**
* Animate dataLabels functionality
*/
(function(H) {
const FLOAT = /^-?\d+\.?\d*$/;
// Add animated textSetter, just like fill/strokeSetters
H.Fx.prototype.textSetter = function(proceed) {
var startValue = this.start.replace(/ /g, ''),
endValue = this.end.replace(/ /g, ''),
currentValue = this.end.replace(/ /g, '');
if ((startValue || '').match(FLOAT)) {
startValue = parseInt(startValue, nbr);
endValue = parseInt(endValue, nbr);
// No support for float
currentValue = Highcharts.numberFormat(
Math.round(startValue + (endValue - startValue) * this.pos), 0);
}
this.elem.endText = this.end;
this.elem.attr(
this.prop,
currentValue,
null,
true
);
};
// Add textGetter, not supported at all at this moment:
H.SVGElement.prototype.textGetter = function(hash, elem) {
var ct = this.text.element.textContent || '';
return this.endText ? this.endText : ct.substring(0, ct.length / 2);
}
// Temporary change label.attr() with label.animate():
// In core it's simple change attr(...) => animate(...) for text prop
H.wrap(H.Series.prototype, 'drawDataLabels', function(proceed) {
var ret,
attr = H.SVGElement.prototype.attr,
chart = this.chart;
if (chart.sequenceTimer) {
this.points.forEach(
point => (point.dataLabels || []).forEach(
label => label.attr = function(hash, val) {
if (hash && hash.text !== undefined) {
var text = hash.text;
delete hash.text;
this.attr(hash);
this.animate({
text: text
});
return this;
} else {
return attr.apply(this, arguments);
}
}
)
);
}
ret = proceed.apply(this, Array.prototype.slice.call(arguments, 1));
this.points.forEach(
p => (p.dataLabels || []).forEach(d => d.attr = attr)
);
return ret;
});
})(Highcharts);
/**
* Calculate the data output
*/
function getData(year) {
let output = Object.entries(initialData).map(country => {
const [countryName, countryData] = country;
return [countryName, Number(countryData[year])]
}).sort((a, b) => b[1] - a[1]);
return ([output[0], output.slice(1, nbr)]);
}
Highcharts.getJSON('https://demo-live-data.highcharts.com/population.json', function(data) {
initialData = data;
chart = Highcharts.chart('container', {
chart: {
animation: {
duration: 500
},
events: {
render() {
let chart = this;
// Responsive input
input.style.width = chart.plotWidth - chart.legend.legendWidth + chart.plotLeft / 2 - 10 + 'px' // where 10 is a padding
}
},
marginRight: 50,
},
plotOptions: {
series: {
animation: false,
groupPadding: 0,
pointPadding: 0.1,
borderWidth: 0
}
},
title: {
useHTML: true,
text: `World population - overall: <b>${getData(startYear)[0][1]}</b>`
},
legend: {
align: 'right',
verticalAlign: 'bottom',
itemStyle: {
fontWeight: 'bold',
fontSize: '50px',
},
symbolHeight: 0.001,
symbolWidth: 0.001,
symbolRadius: 0.001,
},
xAxis: {
type: 'category',
},
yAxis: [{
opposite: true,
title: {
text: 'Population per country'
},
tickAmount: 5
}],
series: [{
colorByPoint: true,
dataSorting: {
enabled: true,
matchByName: true
},
type: 'bar',
dataLabels: [{
enabled: true,
}],
name: startYear,
data: getData(startYear)[1]
}]
});
});
/**
* Update the chart. This happens either on updating (moving) the range input,
* or from a timer when the timeline is playing.
*/
function update(increment) {
if (increment) {
input.value = parseInt(input.value) + increment;
}
if (input.value >= endYear) { // Auto-pause
pause(btn);
}
chart.update({
title: {
useHTML: true,
text: `<div>World population - overall: <b>${getData(input.value)[0][1]}</b></span></div>`
},
}, false, false, false)
chart.series[0].update({
name: input.value,
data: getData(input.value)[1]
})
}
/**
* Play the timeline.
*/
function play(button) {
button.title = 'pause';
button.className = 'fa fa-pause';
chart.sequenceTimer = setInterval(function() {
update(1);
}, 500);
}
/**
* Pause the timeline, either when the range is ended, or when clicking the pause button.
* Pausing stops the timer and resets the button to play mode.
*/
function pause(button) {
button.title = 'play';
button.className = 'fa fa-play';
clearTimeout(chart.sequenceTimer);
chart.sequenceTimer = undefined;
}
btn.addEventListener('click', function() {
if (chart.sequenceTimer) {
pause(this)
} else {
play(this)
}
})
/**
* Trigger the update on the range bar click.
*/
input.addEventListener('click', function() {
update()
})
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.