Explorar el Código

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

Torkel Ödegaard hace 12 años
padre
commit
48325b6452
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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
               },