mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
Fixes #83, stack percent with no line fill (workaround fix for bug in flot.stackpercent)
This commit is contained in:
parent
4a1c9ac390
commit
48325b6452
@ -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
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user