Fixed bug when borderWidth is set to 0

git-svn-id: https://flot.googlecode.com/svn/trunk@69 1e0a6537-2640-0410-bfb7-f154510ff394
pull/1/head
olau@iola.dk 18 years ago
parent 65cae14ecb
commit b66c291b2c

@ -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() {

Loading…
Cancel
Save