Removed 1/2 linewidth hack, it is a bad idea for the outline, fixes issue 8

git-svn-id: https://flot.googlecode.com/svn/trunk@27 1e0a6537-2640-0410-bfb7-f154510ff394
pull/1/head
olau@iola.dk 19 years ago
parent 0c08a9ab68
commit 4375f84f8f

@ -9,7 +9,6 @@ handling time data
grid configuration
- how ticks look like
- (handling of 1/2 linewidth hack in grid?)
selection
- user should be able to cancel selection with escape

@ -434,7 +434,7 @@
ctx.lineWidth = 2;
ctx.strokeStyle = options.grid.color;
ctx.lineJoin = "round";
ctx.strokeRect(ctx.lineWidth/2, ctx.lineWidth/2, plotWidth, plotHeight);
ctx.strokeRect(0, 0, plotWidth, plotHeight);
ctx.restore();
}

Loading…
Cancel
Save