Commit 48325b64 by Torkel Ödegaard

Fixes #83, stack percent with no line fill (workaround fix for bug in flot.stackpercent)

parent 4a1c9ac3
......@@ -90,7 +90,7 @@ function (angular, $, kbn, moment, _) {
lines: {
show: panel.lines,
zero: false,
fill: panel.fill === 0 ? false : panel.fill/10,
fill: panel.fill === 0 ? 0.001 : panel.fill/10,
lineWidth: panel.linewidth,
steps: panel.steppedLine
},
......
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