I can see two approaches to the problem without building your own control. Which you choose depends largely on how many possible entries there will be in your equivalent to the "Names" column. If it's a relatively small number (say < 10), then I would suggest using a category filter with all of the names preselected in the starting state. Then, users can deselect names from the list to filter out the rows, like this: http://jsfiddle.net/asgallant/zNccF/8/
If, on the other hand, your list of possible entries can be very large, then I would recommend going the other direction, and building a CategoryFilter that *excludes* the selected entries from the dashboard, like this: http://jsfiddle.net/asgallant/zNccF/9/ On Thursday, September 6, 2012 6:43:54 AM UTC-4, Priyanka wrote: > > Hi, > > I have a data table that has more than 1000 rows, i need to have a way > using which i should be able de-select specific row/rows and display all > the charts with the remaining data. > > In the example link shown below pointed by Asgallant, suppose i want to > have a way where i can deselect names "John","Aaron" from "Name" column. > Then the pie chart and table chart should have data only for rows where > "Name" column has values "Micheal", "Jessica", "Margareth" and "Miranda" > > http://jsfiddle.net/asgallant/zNccF/ > > Using CategoryFilter options there are ways to select specific thing > (through drop-down selection or through typing), but here i want the > reverse (to deselect some thing and get the charts dynamically update > removing the data for selected row) > > Can anyone please help me in this. > > Thanks for your time! > -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-visualization-api/-/-ODa-nKlaXoJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-visualization-api?hl=en.
