1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-24 16:55:24 +03:00

Fixed accelerometer graph on motors tab.

This commit is contained in:
mikeller 2017-02-24 09:08:26 +13:00
parent e405164c6d
commit 911ebe02ab

View file

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