我从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分支,因为我需要分组图表。