dygraphs使用drawPoints平滑线条

时间:2016-08-20 17:55:26

标签: lines dygraphs smooth

我用这个例子http://dygraphs.com/tests/smooth-plots.html画出流畅的线条。当我能够通过数据点上的plotter: smoothPlotter小点消失平滑时。我已设置drawPoints: true。当鼠标在曲线上时显示点。

如何在数据点(http://dygraphs.com/options.html#drawPoints)启用小点并仍然使用平滑?

1 个答案:

答案 0 :(得分:0)

我还没有找到启用绘图的方法。但是你可以使用相同的数据创建第二个系列,只绘制点,而不是线。像这样:

    new Dygraph(document.getElementById('graph'),
            functionData,
            {
series: {
  Straight: {
    color: 'red',
    strokeWidth: 0,
    drawPoints: true,
    pointSize: 7
  },
  Smoothed: {
    plotter: smoothPlotter,
    color: 'red',
    strokeWidth: 2
  }
},
});

http://jsfiddle.net/wLxs4ju1/