Highcharts Demo
author(s): Torstein Hønsi
by vasagi
HTML
<script src="https://code.highcharts.com/stock/highstock.js"></script>
<script src="https://code.highcharts.com/modules/boost.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<div id="container"></div>
CSS
#container {
height: 400px;
max-width: 800px;
margin: 0 auto;
}
JavaScript
const n = 120,
s = 600,
pointStart = Date.UTC(2017, 0, 1),
pointInterval = 24 * 36e5;
function getData(n) {
const arr = [];
let a,
b,
c,
spike;
for (let i = 0; i < n; i = i + 1) {
if (i % 100 === 0) {
a = 2 * Math.random();
}
if (i % 1000 === 0) {
b = 2 * Math.random();
}
if (i % 10000 === 0) {
c = 2 * Math.random();
}
if (i % 50000 === 0) {
spike = 0;
} else {
spike = 0;
}
arr.push([
pointStart + i * pointInterval,
2 * Math.sin(i / 100) + a + b + c + spike + Math.random()
]);
}
return arr;
}
function getSeries(n, s) {
const r = [];
for (let i = 0; i < s; i++) {
r.push({
data: getData(n),
boostThreshold: 1,
});
}
return r;
}
const series = getSeries(n, s);
console.time('line');
Highcharts.stockChart('container', {
chart: {
zooming: {
type: 'x'
}
},
title: {
text:
'Highcharts drawing ' + (n * s) + ' points across ' + s + ' series'
},
scrollbar: {
liveRedraw: false
},
legend: {
enabled: false
},
subtitle: {
text: 'Using the Boost module'
},
tooltip: {
valueDecimals: 2,
split: false
},
series: series
});
console.timeEnd('line');