From f106e1bf2db1aa604edb62b8e3b309329c41dd94 Mon Sep 17 00:00:00 2001 From: Evert Timberg Date: Tue, 14 Jun 2016 19:19:15 -0400 Subject: [PATCH] fix tooltip with array returns --- src/core/core.tooltip.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/core.tooltip.js b/src/core/core.tooltip.js index e21934140..d55dd2be0 100755 --- a/src/core/core.tooltip.js +++ b/src/core/core.tooltip.js @@ -86,7 +86,8 @@ module.exports = function(Chart) { function pushOrConcat(base, toPush) { if (toPush) { if (helpers.isArray(toPush)) { - base = base.concat(toPush); + //base = base.concat(toPush); + Array.prototype.push.apply(base, toPush); } else { base.push(toPush); }