fix(graph): fixed order of graph tooltip when sort order was none, fixes #6648

This commit is contained in:
Torkel Ödegaard
2016-11-23 17:06:58 +01:00
parent ea5cb0d076
commit cf751c256b
2 changed files with 1 additions and 4 deletions

View File

@@ -181,10 +181,6 @@ function ($) {
seriesHoverInfo.sort(function(a, b) {
return a.value - b.value;
});
} else {
seriesHoverInfo.sort(function(a, b) {
return a.yaxis - b.yaxis;
});
}
for (i = 0; i < seriesHoverInfo.length; i++) {