The "easy" way to handle this is to get all the data into one DataTable and use that table to feed the dashboard. You can separate out the different columns for each chart using the ChartWrapper's "view" parameter.
If the data is amenable to being loaded into one DataTable either manually or from your data source, then you're all set (see this example<http://jsfiddle.net/asgallant/2RAZm/>). If you have to load it into two different DataTable's, then you should join the two tables using the google.visualization.data.join<https://developers.google.com/chart/interactive/docs/reference#google_visualization_data_join>function and feed the resulting table to the dashboard (see this example <http://jsfiddle.net/asgallant/2RAZm/1/>). On Monday, May 27, 2013 8:35:24 AM UTC-4, [email protected] wrote: > > I want two different charts with the same or different dates to be > controlled by the same rangeFilter, something like this: > http://jsfiddle.net/QMTqN/ > but with 2, different, data sets. > > How can I draw a different data set for each chart? > -- 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.
