Commit b66c291b authored by olau@iola.dk's avatar olau@iola.dk

Fixed bug when borderWidth is set to 0

git-svn-id: https://flot.googlecode.com/svn/trunk@69 1e0a6537-2640-0410-bfb7-f154510ff394
parent 65cae14e
......@@ -19,6 +19,7 @@ the fill.
Fixed a bug in calculating spacing around the plot (reported by
timothytoe). Fixed a bug in finding max values for all-negative data
sets. Prevent the possibility of eternal looping in tick calculations.
Fixed a bug when borderWidth is set to 0 (reported by Rob/sanchothefat).
Flot 0.4
......
......@@ -860,8 +860,9 @@
ctx.strokeStyle = options.grid.color;
ctx.lineJoin = "round";
ctx.strokeRect(0, 0, plotWidth, plotHeight);
ctx.restore();
}
ctx.restore();
}
function insertLabels() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment