Crossfilter filter based on textbox

I would like to filter my data based on the input in a textbox. Is this possible? Something like this but with crossfilter.


Certainly possible with crossfilter , just create dimension objects from your raw data and then apply a filter by the input of the text box.

myDimension.filter(valueFromBox); // selects values who equal the value in the text box

Check out the API docs here.

链接地址: http://www.djcxy.com/p/32752.html

上一篇: 双重尺寸(与每日最大值相关的第二个值)

下一篇: 基于文本框的Crossfilter过滤器