diff --git a/src/platforms/platform.dom.js b/src/platforms/platform.dom.js index de451b935a6..761337b061c 100644 --- a/src/platforms/platform.dom.js +++ b/src/platforms/platform.dom.js @@ -92,11 +92,11 @@ module.exports = function(Chart) { return canvas; } - function createEvent(type, chart, x, y, native) { + function createEvent(type, chart, x, y, nativeEvent) { return { type: type, chart: chart, - native: native || null, + native: nativeEvent || null, x: x !== undefined? x : null, y: y !== undefined? y : null, };