mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-25 17:25:16 +03:00
Fixed accelerometer graph on motors tab.
This commit is contained in:
parent
e405164c6d
commit
911ebe02ab
1 changed files with 2 additions and 0 deletions
|
@ -173,6 +173,8 @@ TABS.motors.initialize = function (callback) {
|
||||||
|
|
||||||
var group = svg.select("g.data");
|
var group = svg.select("g.data");
|
||||||
var lines = group.selectAll("path").data(data, function (d, i) {return i;});
|
var lines = group.selectAll("path").data(data, function (d, i) {return i;});
|
||||||
|
|
||||||
|
lines.enter().append("path").attr("class", "line");
|
||||||
lines.attr('d', graphHelpers.line);
|
lines.attr('d', graphHelpers.line);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue