Skip to content

Commit

Permalink
fixing tooltips for line chart (#26881) (#26942)
Browse files Browse the repository at this point in the history
  • Loading branch information
ppisljar authored Dec 11, 2018
1 parent 9ee2172 commit 764a4b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export function VislibVisualizationsLineChartProvider(Private) {
.selectAll('circle')
.data(function appendData() {
return data.values.filter(function (d) {
return !_.isNull(d.y);
return !_.isNull(d.y) && (d.y || !d.y0);
});
});

Expand Down

0 comments on commit 764a4b3

Please sign in to comment.