Hi guys, I have the following code that I am busy with. I need to use
the PHP encoded JSON array that I created and use that data to create
a pie chart, any ideas on how to get it to work? The var data in the
function drawChart() is test data which works, I need to replace that
data with the JSON.

Any help is appreciated!

<?
// Connection to the database
$db = mysql_connect("localhost", "root", "elves") or die("Could not
connect");
mysql_select_db("wlp_FIX001");

// Selecting the data
$s = "SELECT * FROM `lu_opportunity_status`";
$m = mysql_query($s) or die("$s dies - " . mysql_error());

while ($row = mysql_fetch_array($m)) {

    $oppStatusName = $row['status'];

    $s1 = "SELECT `lu_opportunity_status`.`status`,
SUM(`opportunities`.`value`) AS `totalvalue` FROM `opportunities` LEFT
JOIN `lu_opportunity_status` ON `opportunities`.`status` =
`lu_opportunity_status`.`id` WHERE `lu_opportunity_status`.`status` =
'$oppStatusName'";
    $m1 = mysql_query($s1) or die("$s1 dies - " . mysql_error());

    $oppStageTotals = array();

    while ($row1 = mysql_fetch_array($m1)) {

        $oppStatus = $row1['status'];
        $oppValue = $row1['totalvalue'];
        $oppStageTotals = array("status" => $oppStatus, "oppValue" =>
$oppValue);
    }
    $encoded_oppStageTotals = json_encode($oppStageTotals);
    print_r($encoded_oppStageTotals);
}
?>
<html>
    <head>
        <TITLE>Form Scaff Charts</TITLE>
        <!--<link rel="stylesheet" media="print" title="Printer-
Friendly Style"
         type="text/css" href="print.css">-->
        <!--Load the AJAX API-->
        <script type="text/javascript" src="https://www.google.com/
jsapi"></script>

        <script type="text/javascript">
            var oppStageTotals = new Array;

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

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

            // Callback that creates and populates a data table,
            // instantiates the pie chart, passes in the data and
            // draws it.
            function drawChart() {
                var data = google.visualization.arrayToDataTable([
                    ['Year', 'Sales', 'Expenses'],
                    ['2004',  1000,      400],
                    ['2005',  1170,      460],
                    ['2006',  660,       1120],
                    ['2007',  1030,      540]
                ]);

                // Set chart options
                var options = {'title':'Opportunities',
                    'width':300,
                    'height':300};

                // Instantiate and draw our chart, passing in some
options.
                var chart = new
google.visualization.PieChart(document.getElementById('chart_div'));

                function selectHandler() {
                    var selectedItem = chart.getSelection()[0];
                    var selectedItem2 = chart.getSelection()[1];
                    if (selectedItem) {
                        var topping = data.getValue(selectedItem.row,
0);
                        var amount = data.getValue(selectedItem.row,
1);
                    }
                }

                google.visualization.events.addListener(chart,
'select', selectHandler);
                chart.draw(data, options);
            }
        </script>
        <style>
            body {
                margin:0px;
                padding:0px;
            }

            .container {
                width: 210mm;
                height: 297mm;
                margin-left: auto;
                margin-right: auto;
            }

            @media print
            {
                .container {
                    position: absolute;
                    top: 0px;
                    bottom: 0px;
                    left: 0px;
                    right: 0px;
                }

                iframe {
                    /*          float:left;
                                display: block;*/
                }

            }
        </style>
    </head>
    <body>
        <div class="container">
            <div id="chart_div" class=span4></div>
        </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