Skip to content

Commit

Permalink
Fix drilldown chart data not always being in sync with reality.
Browse files Browse the repository at this point in the history
Echart's setOption by default tries to merge the new data with existing
data. In the case of the drilldown chart in particular, this could lead
to strange results, since the drilldown chart could maintain data from
the previous level of data.
  • Loading branch information
GUI committed Mar 4, 2018
1 parent 3eeffaf commit 53d263b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,6 @@ export default Component.extend({
end: 100,
},
],
});
}, true);
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,6 @@ export default Component.extend({
end: 100,
},
],
});
}, true);
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,6 @@ export default Component.extend({
top: 10,
right: 30,
},
});
}, true);
},
});

0 comments on commit 53d263b

Please sign in to comment.