You are missing the 'new' keyword in the dataTable declaration. It should be:
var data = new google.visualization.DataTable(); Also, the first row of data you are adding (['API Name','Status'],) will throw an error, as you need to match data types (in this case, the second value should be a string), but your initial code would have been correct here. -- 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/-/FgR3ZlR_Gv8J. 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.
