如何控制 Dygraph 中显示的 canvas 行?

How to get control of canvas lines shown in Dygraph?

我想控制 Dygraph 的 Canvas 行,类似于 highcharts。要获得一个想法,请检查以下 jsfiddle。

参考:jsfiddle

Highcharts.chart('container', {
xAxis: {
    categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},

plotOptions: {
    series: {
        cursor: 'pointer',
        point: {
            events: {
                click: function () {
                    alert('Category: ' + this.category + ', value: ' + 
 this.y);
                }
            }
        }
    }
 },

series: [{
    data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 
194.1, 95.6, 54.4]
}]
});

有一个 pointClickCallback option that you can set. See the callback demo 的例子。请注意,这将捕获对点的点击,但不会捕获连接它们的线。