Has anyone written a chart type that allows you to filter from a (set of) drop-down menu?
For example, think of a dc.js chart element that you can click on to filter a data set like any of the existing elements (pie, row, etc.) but instead of it being graphical, it's simply a text list of values as in:
<select multiple>
<option> All
<option> one
<option> two
...
</select>
So instead of clicking on one or more bars in a bar chart to filter on those values of the dimension, you just click on or select text from a drop-down menu. This would be useful for a set of filters across the top of a panel of other graphical (pie, line, bubble) charts.
Have you seen something like that? We are thinking about trying to build one, but figured this would be a common option and thus likely already implemented.
Thanks.