我用这个例子http://dygraphs.com/tests/smooth-plots.html画出流畅的线条。当我能够通过数据点上的plotter: smoothPlotter
小点消失平滑时。我已设置drawPoints: true
。当鼠标在曲线上时显示点。
如何在数据点(http://dygraphs.com/options.html#drawPoints)启用小点并仍然使用平滑?
答案 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
}
},
});