I have the following code and a table of incompatible data was found: Error: the table contains more columns than expected (expecting 3 columns)
function drawMarkersMap() { var data = google.visualization.arrayToDataTable([ ['State', 'User', 'Company','data'], ['Australian Capital Territory', 100, 160, 100], ['Northern Territory', 250, 250, 200 ], ['Western Australia', 150, 350, 300], ['New South Wales', 300, 100, 400], ['Victoria', 50, 156, 50], ['Queensland', 10, 150, 20], ['South Australia', 160, 168, 23], ['Tasmania', 250, 568, 3443] ]); var options = { region : 'AU', displayMode : 'markers', colorAxis : { colors: ['blue', 'red'] } }; var chart = new google.visualization.GeoChart(document.getElementById('chart_div_geo')); chart.draw(data, options); };