I need help with a chart that has dates, including a daylight saving day. After this specific day, all subsequent dates in the tooltip are showing as one day earlier than they should be.
$(function () {
Highcharts.setOptions({
global: {
useUTC: false
}
});
$('#container').highcharts({
xAxis: {
type: 'datetime'
},
chart: {
type: "column"
},
plotOptions: {
series: {
stacking: "normal"
}
},
series: [{
data: [{
y: 10
}, {
y: 20
}, {
y: 10
}],
pointInterval: 86400000,
pointStart: 1414274400000 //Sun Oct 26 2014 00:00:00 GMT+0200 (CEST)
}]
});
});
Check out an example here: http://jsfiddle.net/bmmg8jnx/