I get different results when I use getFilteredRows in two different 
statements. The columns I want to filter are different, so I should be able 
to do them in two statements.
The combined method of filtering the two columns (Method1) gives the 
correct result.
But I think Method2 should also work. Can anyone please tell me why Method2 
does not give me the correct results? 


Method1:
fundView.setRows(fundView.getFilteredRows([{ column: 1, value: 2 }, { 
column: 2, value: 1 }]));


Method2:
fundView.setRows(fundView.getFilteredRows([{ column: 1, value: 2 }]));
fundView.setRows(fundView.getFilteredRows([{ column: 2, value: 1 }]));

-- 
You received this message because you are subscribed to the Google Groups 
"Google Chart API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-chart-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-chart-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-chart-api.
For more options, visit https://groups.google.com/d/optout.

Reply via email to