Skip to content

Commit

Permalink
Fix lines zero data not handle right. #4346
Browse files Browse the repository at this point in the history
  • Loading branch information
pissang committed Oct 28, 2016
1 parent 2f66296 commit d1b29ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chart/lines/LinesSeries.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ define(function (require) {
else {
lineData.hasItemOption = true;
var value = dataItem.value;
if (value) {
if (value != null) {
return value instanceof Array ? value[dimIndex] : value;
}
}
Expand Down

0 comments on commit d1b29ee

Please sign in to comment.