提交 60ae3abf 编写于 作者: P pissang

DON'T FORGET to change return in callback to continue in for loop.

上级 8bace507
......@@ -153,7 +153,7 @@ export default echarts.extendChartView({
if (coordSysType === 'cartesian2d') {
// Ignore empty data
if (isNaN(data.get(dataDims[2], idx))) {
return;
continue;
}
var point = coordSys.dataToPoint([
......@@ -177,7 +177,7 @@ export default echarts.extendChartView({
else {
// Ignore empty data
if (isNaN(data.get(dataDims[1], idx))) {
return;
continue;
}
rect = new graphic.Rect({
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册