Merge branch 'master' into develop

This commit is contained in:
Torkel Ödegaard 2018-11-13 17:24:51 +01:00
commit b530b9ce7f

View File

@ -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)