diff --git a/tabs/motors.js b/tabs/motors.js index 83b4e3eb..e4007f9d 100644 --- a/tabs/motors.js +++ b/tabs/motors.js @@ -173,6 +173,8 @@ TABS.motors.initialize = function (callback) { var group = svg.select("g.data"); var lines = group.selectAll("path").data(data, function (d, i) {return i;}); + + lines.enter().append("path").attr("class", "line"); lines.attr('d', graphHelpers.line); }