It it possible to use the filtering options described here:
https://google-developers.appspot.com/chart/interactive/docs/gallery/controls
without using arrayToDataTable to map up the data?

I have the data in the following format:

var data = new google.visualization.DataTable();
data.addColumn('string', 'Country');        
data.addColumn('number', France');                    
data.addColumn('number', 'Germany');
data.addColumn('number',  'Finland');
etc

data.addRows([
    
['2012',0,71.33,395.02,0,2812.53,931.97,0,612.1,408.7,0,2857.5,402.99,2180.91]  
  
]);

But that does not seem to work with 
NumberRangeFilter<https://google-developers.appspot.com/chart/interactive/docs/gallery/controls#numberrangefilter>
?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to