4

https://google-developers.appspot.com/chart/interactive/docs/gallery/linechart

我正在使用上面显示的谷歌折线图,我想要多条线,但一条线可能有数据,而另一条数据没有。

所以,基本上有一个选项可以让我做类似的事情。

data.addRows([
      ['2004', 1000, 400],
      ['2005', null, 460],
      ['2006',  860, null],
      ['2007', 1030, 540]
]);

并有一条线通过(2004, 1000)(2005, 860)不是(2004, 1000)to (2005, 0)to (2006, 860)?谢谢

4

1 回答 1

2

对于折线图,您可以使用此处提到的 interpolateNulls 选项。

将其设置为 true 将使其插入适当的值。

于 2013-03-14T03:08:37.173 回答