Browse Source

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

Torkel Ödegaard 12 years ago
parent
commit
48325b6452
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/app/directives/grafanaGraph.js

+ 1 - 1
src/app/directives/grafanaGraph.js

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