From f650445ddccf01c6f0cf1233b042592ad1ed403b Mon Sep 17 00:00:00 2001 From: etimberg Date: Sun, 18 Oct 2015 10:39:54 -0400 Subject: [PATCH] Use correct function to get `afterBody` lines for tooltip. --- src/core/core.tooltip.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/core.tooltip.js b/src/core/core.tooltip.js index a1a94a1ee..9b227e186 100644 --- a/src/core/core.tooltip.js +++ b/src/core/core.tooltip.js @@ -266,7 +266,7 @@ title: this.getTitle(xLabel, yLabel, element._index, element._datasetIndex, this._data), beforeBody: this.getBeforeBody(xLabel, yLabel, element._index, element._datasetIndex, this._data), body: this.getBody(xLabel, yLabel, element._index, element._datasetIndex, this._data), - afterBody: this.getBeforeBody(xLabel, yLabel, element._index, element._datasetIndex, this._data), + afterBody: this.getAfterBody(xLabel, yLabel, element._index, element._datasetIndex, this._data), footer: this.getFooter(xLabel, yLabel, element._index, element._datasetIndex, this._data), });