Skip to content

Commit

Permalink
Merge pull request chartjs#2924 from jeffesp/master
Browse files Browse the repository at this point in the history
Fixes chartjs#2923: swapped tooltip xAlign & yAlign
  • Loading branch information
etimberg authored Jul 6, 2016
2 parents 44a9866 + 0c5a17a commit fca419e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/core.tooltip.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit fca419e

Please sign in to comment.