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