hi this is ma code and it does not work
please help

<?php
$variable_php=1;

echo '<html>
  <head>

    <script type="text/javascript" src="https://www.google.com/jsapi
"></script>
    <script type="text/javascript">
var varjs="'.$variable_php.'";
      google.load("visualization", "1", {packages:["corechart"]});
      google.setOnLoadCallback(drawChart);
      function drawChart() {
        var data = google.visualization.arrayToDataTable([
          [\'Year\', \'Sales\', \'Expenses\'],
          [varjs,  v:varjs,      400],
          [\'2005\',  1170,      460],
          [\'2006\',  660,       1120],
          [\'2007\',  1030,      540]
        ]);

        var options = {
          title: \'Company Performance\',
          hAxis: {title: \'Year\', titleTextStyle: {color: \'red\'}}
        };

        var chart = new
google.visualization.ColumnChart(document.getElementById(\'chart_div\'));
        chart.draw(data, options);
      }
    </script>
  </head>
  <body>
    <div id="chart_div" style="width: 900px; height: 500px;"></div>
  </body>
</html>'
?>

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