Hi folks,

how can i change the fontsize in a column chart? I think it is totally easy 
but i am not able to do is.

Hope someone can help me.

This is my code:

"data:text/html," & " 
<html>
  <head>
    <script type=\"text/javascript\" 
src=\"https://www.google.com/jsapi\";></script>
    <script type=\"text/javascript\">
      google.load(\"visualization\", \"1\", {packages:[\"corechart\"]});
      google.setOnLoadCallback(drawChart);
      function drawChart() {
        var data = google.visualization.arrayToDataTable([
          ['Attribut', '" & Spieler::Name & "', ],
          ['Abschlag',  " & Spieler::Abschlag1 & ",      ],
          ['Abwurf',  " & Spieler::Abwurf1 & ",     ],
          ['Eins gegen Eins',  " & Spieler::Eins gegen Eins1 & ",       ],
          ['Exzentrizität',  " & Spieler::Exzentrizität1 & ",      ],
['Fausttendenz',  " & Spieler::Fausttendenz1 & ",      ],
['Halten',  " & Spieler::Halten1 & ",      ],
['Herauslaufen',  " & Spieler::Herauslaufen1 & ",      ],
['Hohe Bälle',  " & Spieler::Hohe Bälle1 & ",      ],
['Kommunikation',  " & Spieler::Kommunikation1 & ",      ],
['Reflexe',  " & Spieler::Reflexe1 & ",      ],     
['Stellungsspiel',  " & Spieler::Stellungsspiel1 & ",      ],
   ]);

        var options = {
          title: 'Torhüterattribute',
          vAxis: {title: '',  titleTextStyle: {color: 'red'}},
      backgroundColor: '#ABABAB',
  };

        var chart = new 
google.visualization.ColumnChart(document.getElementById('chart_div'));

        chart.draw(data, options);
      }
    </script>
  </head>
  <body bgcolor=#5E5C5C>
    <div id=\"chart_div\" style=\"width: 730px; height: 290px;\"></div>
  </body>
</html>"




-- 
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/d/optout.

Reply via email to