我想根据文本框中的输入过滤我的数据。这可能吗?像这样但带有交叉过滤器的东西。
问问题
1300 次
1 回答
3
当然可以crossfilter
,只需从原始数据创建dimension
对象,然后通过文本框的输入应用过滤器。
myDimension.filter(valueFromBox); // selects values who equal the value in the text box
在此处查看API 文档。
于 2013-03-25T13:23:10.390 回答