From 0c5a17af00bb1a1f506df172bdf84a0a81e1355d Mon Sep 17 00:00:00 2001 From: jeffesp Date: Wed, 6 Jul 2016 09:49:31 -0400 Subject: [PATCH] Fixes #2923: swapped tooltip xAlign & yAlign --- src/core/core.tooltip.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/core.tooltip.js b/src/core/core.tooltip.js index 589d4292b..6ab623886 100755 --- a/src/core/core.tooltip.js +++ b/src/core/core.tooltip.js @@ -158,8 +158,8 @@ module.exports = function(Chart) { // Positioning xPadding: tooltipOpts.xPadding, yPadding: tooltipOpts.yPadding, - xAlign : tooltipOpts.yAlign, - yAlign : tooltipOpts.xAlign, + xAlign : tooltipOpts.xAlign, + yAlign : tooltipOpts.yAlign, // Body bodyFontColor: tooltipOpts.bodyFontColor, -- 2.47.2