Hi everyone,

I'm trying to create a map with all the states of Australia, so I'm using 
the following code:

 function drawVisualization() {
>     var data = google.visualization.arrayToDataTable([
>       ['Province', 'Popularity', 'Porcentage'],
>       ['Victoria', 700, 50],
>       ['New South Wales', 300, 30],
>       ['Australian Capital Territory', 1000, 30],
>       ['Western Australia', 200, 30],
>       ['Tasmania', 700, 30],
>       ['Queensland', 100, 30],
>       ['South Australia', 100, 30],
>       ['Northern Territory', 100, 30]
>     ]);
>       
>     var options = {
>       region: 'AU',
>       displayMode: 'regions',
>       colorAxis: {colors: ['green', 'blue']},
>       datalessRegionColor: 'FF6600',
>       resolution: 'provinces'
>     };
>     
>     
>     var map = new 
> google.visualization.GeoChart(document.getElementById('visualization'));
>     map.draw(data, options);
>   }

​
Everything is working, except for Australian Capital Territory and Tasmania.

Can anyone help me?

Thanks in advance.

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to