4

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

Jason Sundram
  • 12,225
  • 19
  • 71
  • 86
Pieter_Daems
  • 1,234
  • 2
  • 14
  • 20

1 Answers1

3

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.

reptilicus
  • 10,290
  • 6
  • 55
  • 79