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

This commit is contained in:
Torkel Ödegaard 2014-02-11 09:15:23 +01:00
parent 4a1c9ac390
commit 48325b6452

View File

@ -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
},