使用scatterPlot从scatter-series中获取选定的信息

时间:2017-08-22 15:22:56

标签: javascript dc.js

我从dc.js examples this example实施了here

另外,我在我的图表中添加了.brushOn(true)选项。刷完后,我需要获取所选信息。

我的过滤功能:

.on('filtered', function(chart){
    console.log(runDimension.top(Infinity));
})

不幸的是,我无法通过刷牙来调用onFiltered事件。

我为brushend事件添加了一个侦听器并获取空对象:

var b = chart.brush();
b.on('brushend.custom', function() {
    console.log(runDimension.top(Infinity));
});

如何使用brushOn(true)获取所选信息?

P.S我使用版本2.1.0-dev的dc.js的this分支,因为我需要分组图表。

0 个答案:

没有答案