From 3a520603d0041ea6d9fa76654a7927bb51d74fcb Mon Sep 17 00:00:00 2001 From: "olau@iola.dk" Date: Fri, 20 Feb 2009 15:18:49 +0000 Subject: [PATCH] Fixed problem with bar highlights (report by Chris Leonello) git-svn-id: https://flot.googlecode.com/svn/trunk@134 1e0a6537-2640-0410-bfb7-f154510ff394 --- jquery.flot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jquery.flot.js b/jquery.flot.js index a53a1da..9c96255 100644 --- a/jquery.flot.js +++ b/jquery.flot.js @@ -1392,7 +1392,7 @@ c.lineTo(left, top); c.lineTo(right, top); c.lineTo(right, bottom); - ctx.fillStyle = fillStyleCallback(bottom, top); + c.fillStyle = fillStyleCallback(bottom, top); c.fill(); }