Commit 9f060ec8 authored by Ole Laursen's avatar Ole Laursen

Round measured label dimensions to fix problem with blurry grid lines

parent b2fedcd8
......@@ -895,8 +895,8 @@
ctx.restore();
}
axis.labelWidth = axisw;
axis.labelHeight = axish;
axis.labelWidth = Math.ceil(axisw);
axis.labelHeight = Math.ceil(axish);
}
function allocateAxisBoxFirstPhase(axis) {
......
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