comment faire google camembert api fond transperent

c'est le code google pour tarte char apt:-

<script type="text/javascript">
      google.setOnLoadCallback(drawChart);
      function drawChart() {
        var data = new google.visualization.DataTable();
        data.addColumn('string', 'Topping');
        data.addColumn('number', 'Slices');
        data.addRows([
          ['Mushrooms', 3],
          ['Onions', 1],
          ['Olives', 1],
          ['Zucchini', 1],
          ['Pepperoni', 2]
        ]);

        var options = {backgroundColor: '#676767',
                       'width':400,
                       'height':300};

        var chart = new google.visualization.PieChart(document.getElementById('priority_customers_report'));
        chart.draw(data, options);
      }
    </script>

Ici la backgroundColor: '#676767' nous donne la couleur maintenant, je veux qu'il soit transparent, comment puis-je le faire?

Et comment mettre le texte en bas? Comme il n'est pas clair dans Google Documents, vraiment difficile à comprendre.

Ceci est lié à la Tarte Simple Graphique de Google

source d'informationauteur Django Anonymous