Hi, i hav i really anoying issue, the wmode='transparent' dont work
when i set a piechat.. with timeline works ok.. but a need in some
places piechart.. but the menu div keeps hide by the chart.. how can i
fix this? my options are:

     google.load("visualization", "1", {packages:["corechart"]});
      google.setOnLoadCallback(drawChart);
      function drawChart() {
        var data = new google.visualization.DataTable();
        data.addColumn('string', 'Task');
        data.addColumn('number', 'Users');
        data.addRows(3);
        data.setValue(0, 0, 'Ativos');
        data.setValue(0, 1, <?php echo $rsStatus['ativos'] ?>);
        data.setValue(1, 0, 'Bloqueados');
        data.setValue(1, 1, <?php echo $rsStatus['bloqueados'] ?>);
        data.setValue(2, 0, 'Desativados');
        data.setValue(2, 1, <?php echo $rsStatus['desativados'] ?>);
        var chart = new
google.visualization.PieChart(document.getElementById('chart_user'));
        chart.draw(data, { wmode: 'transparent', is3D:true, width:
380, height: 200, title: 'Estatística Usuários', colors:
['#4E9258','#C11B17','#A4A4A4']});

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

Reply via email to