0

データベース内のテーブルから情報を取得する折れ線グラフを表示したいと考えています。私が必要としているものに最適と思われる Google Graphs に出会いました。コードに配置したデータを表示するグラフを取得できますが、エコーを使用してデータベースからデータを追加しようとすると機能しません。私のコードの下に見つけてください。ここで何が間違っていたのかわかりません。

<script type="text/javascript" src="https://www.google.com/jsapi"></script>
    <script type="text/javascript">

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

      // 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() {

        // Create the data table.
        var data = new google.visualization.DataTable();
        data.addColumn('string', 'Date');
        data.addColumn('number', 'Number of Products');
        data.addRows([
<!--CHANGE FOR PHP TO PULL INFORMATION FRO MYSQL DBA-->

<?php
// Create connection
$con=mysqli_connect("host","username","password","database");

// Check connection
if (mysqli_connect_errno($con))
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }

  $result = mysqli_query($con,"SELECT * FROM table");
$start = 0;
while($row = mysqli_fetch_array($result)){

    echo "['".$row["dateadded"]."', ".$row["products"]."],";

mysqli_close($con);
?>
        ]);

        // Set chart options
        var options = {'title':'Product Count History',
                       'width':600  ,
                       'height':550};

        // Instantiate and draw our chart, passing in some options.
        var chart = new google.visualization.LineChart(document.getElementById('chart_product_history'));
        chart.draw(data, options);
      }
    </script>


                <table width="100%" border="0" cellspacing="0" cellpadding="0">
                <tr>
                <td width="50%">
                <div id="chart_product_history"></div>
                </td>
                <td width="50%">

                </td>
                </tr>
                <tr>
                <td width="50%">

                </td>
                <td width="50%">

                </td>
                </tr>
                </table>

ありがとうライアン

4

2 に答える 2

0

いくつかの固定ランダム データを使用してコードを試してみたところ、グラフが生成されました (ただし、配列に余分なコンマがあり、問題が発生する場合があります)。

クエリの結果を囲むループから閉じ中括弧が欠落しているようです。

以下を試してください

<script type="text/javascript" src="https://www.google.com/jsapi"></script>
    <script type="text/javascript">

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

      // 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() {

        // Create the data table.
        var data = new google.visualization.DataTable();
        data.addColumn('string', 'Date');
        data.addColumn('number', 'Number of Products');
        data.addRows([
<!--CHANGE FOR PHP TO PULL INFORMATION FRO MYSQL DBA-->

<?php
// Create connection
$con=mysqli_connect("host","username","password","database");

// Check connection
if (mysqli_connect_errno($con))
{
    echo "Failed to connect to MySQL: " . mysqli_connect_error();
}

$result = mysqli_query($con,"SELECT * FROM table");
$start = 0;
$OutArray = array();
while($row = mysqli_fetch_array($result))
{
    $OutArray[] = "['".$row["dateadded"]."', ".$row["products"]."],";
}

echo explode(',', $OutArray);

mysqli_close($con);
?>
        ]);

        // Set chart options
        var options = {'title':'Product Count History',
                       'width':600  ,
                       'height':550};

        // Instantiate and draw our chart, passing in some options.
        var chart = new google.visualization.LineChart(document.getElementById('chart_product_history'));
        chart.draw(data, options);
      }
    </script>


                <table width="100%" border="0" cellspacing="0" cellpadding="0">
                <tr>
                <td width="50%">
                <div id="chart_product_history"></div>
                </td>
                <td width="50%">

                </td>
                </tr>
                <tr>
                <td width="50%">

                </td>
                <td width="50%">

                </td>
                </tr>
                </table>
于 2013-08-15T12:47:50.773 に答える