When fire a click on a serie, I get the next error : Uncaught TypeError: Property 'firePointEvent' of object # is not a function.
In Highstock.js v1.3.1 (2013-04-15) on line 9575 :
// the series click event
fireEvent(hoverPoint.series, 'click', extend(e, {
point: hoverPoint
}));
Until there, hoverPoint
exist and have real values, but don't have yet firePointEvent
method.
// the point click event
hoverPoint.firePointEvent('click', e);
On this next line, hoverPoint
still exist and do have a firePointEvent
method, but all its attributes are null. So it throws the error :/
What's the problem here?