In the Google Visualization API you would first collect your data in a google.visualization.DataTable (link<http://code.google.com/apis/chart/interactive/docs/reference.html#DataTable>). The logic to do so is similar to the one you use to assemble your HTML table. Once you have a DataTable that represents the data to visualize, you'd then pass it to the chart of your choice<http://code.google.com/apis/chart/interactive/docs/gallery.html> (one possibility is even a plain tabular representation<http://code.google.com/apis/chart/interactive/docs/gallery/table.html> ).
Whenever the user changes one of the parameters, you can regenerate the DataTable and redraw the visualization(s), which would then display the updated contents. I'm not sure what you mean when you say that every example in the API is "for a static table". As far as I know, however, there is no helper function that would create a visualization out of an HTML table structure like the gvchart jquery plugin does. As said, the API expects you to use the google.visualization.DataTable object to represent your data and then pass it to charts. /R. -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. 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.
