Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用动态数据创建了图表。它正在为 2 列获取空值。
看到这个小提琴:jsfiddle.net/xj6ms/2/
我想删除空列,以便正确排列其他列。
可能吗?
谢谢,
您将需要删除数据中具有空 y 值的条目。
这是基本的 javascript 编程,但一种方法是使用旧数据数组中的非空条目创建一个新数组:
newdata = []; for (i=0 ; i<data.length ; i++) { if (data[i].y != null) { newdata.push(data[i]); } }
然后,您可以在图表中使用 newdata 代替 data 变量:
http://jsfiddle.net/fYcb9/