如何获得给定X的Dygraph系列的Y值?

时间:2019-05-02 18:10:37

标签: dygraphs

有一个Dygraph,其定义如下两行:http://dygraphs.com/gallery/#g/independent-series

这样定义:

 new Dygraph(
        document.getElementById('graph'),
        [
          [1, null, 3],
          [2, 2, null],
          [3, null, 7],
          [4, 5, null],
          [5, null, 5],
          [6, 3, null]
        ],
        {
          labels: ['x', 'A', 'B' ],
          connectSeparatedPoints: true,
          drawPoints: true
        }
      );

看起来像这样:

enter image description here

如您所见,通过传递3个黑点的(X,Y)值定义了一条蓝线。 Dygraph负责绘制这条线。

通过将点数组传递给Dygraph,可以轻松获取给定X的Y。

但是如何获取点之间给定X的Y?

0 个答案:

没有答案