Merge pull request #14053 from grafana/singlestat-fix

fixed singlestat guage ceneterd dot rendering issue
pull/14075/head
Torkel Ödegaard 7 years ago committed by GitHub
commit f50dc4e99d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      public/vendor/flot/jquery.flot.js

@ -2310,12 +2310,13 @@ Licensed under the MIT license.
}
function drawSeries(series) {
if (series.lines.show)
if (series.lines.show) {
drawSeriesLines(series);
if (!series.points.show && !series.bars.show) {
// not necessary if user wants points displayed for everything
drawOrphanedPoints(series);
}
}
if (series.bars.show)
drawSeriesBars(series);
if (series.points.show)

Loading…
Cancel
Save