**********************************************************
I have used below code it works in local server, 
but when i upload it to live server it shows me the pie chart and suddenly 
goes to invisible.
Please help me to resolve this issue.

*********************************************************
// Load the Visualization API and the piechart package.
google.load('visualization', '1', {'packages':['corechart']});

// Set a callback to run when the Google Visualization API is loaded.
google.setOnLoadCallback(drawChart);
function drawChart() {

  // Create our data table out of JSON data loaded from server.
  var data = new google.visualization.DataTable(<?php echo $jsonTable?>);
  var options = {
       title: 'ProjectType',
      is3D: 'true',
      width: 350,
  backgroundColor: '#A3D1D1',
      height: 200,

 
    };
  // Instantiate and draw our chart, passing in some options.
  // Do not forget to check your div ID
  var chart = new 
google.visualization.PieChart(document.getElementById('div_pie1'));
  chart.draw(data, options);

}

On Friday, 31 January 2014 18:58:30 UTC+5:30, Tobias Link wrote:
>
> I use the Geochart API with region mode to visualize data. Sadly there are 
> countries in the displayed map excerpt (region 150 Europe), which I cannot 
> use to display data. In my use case these are Turkey, Malta, Cyprus and 
> Luxembourg (though this might be too small). I'd be very pleased if this 
> issue could be addressed with a future update.
>
> Thanks in advance and best regards!
> Tobias Link
>
>

-- 
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