i have three arrays:
$array1
, $array2
and $array3
. Each having structures as(the count is different):
[{"year":"2016","month":"5","lab_id":"1","count":"19"},{"year":"2016","month":"6","lab_id":"1","count":"1"},{"year":"2016","month":"7","lab_id":"1","count":"8"}]
[{"year":"2016","month":"5","lab_id":"1","count":"26"},{"year":"2016","month":"6","lab_id":"1","count":"34"},{"year":"2016","month":"7","lab_id":"1","count":"30"}]
I am trying to plot it in Google charts using the following code:
<?php
$rows = array();
$flag = true;
$table = array();
$table['cols'] = array(
array('label' => 'Month', 'type' => 'string'),
array('label' => '<15 min', 'type' => 'number'),
array('label' => '>15 & <60', 'type' => 'number'),
array('label' => '>60', 'type' => 'number'),
);
$rows = array();
$allArray = array();
array_push($allArray,$array1);
array_push($allArray,$array2);
array_push($allArray,$array3);
foreach($allArray as $dataArray) {
$temp = array();
foreach($dataArray as $item) {
$temp[] = array('v' => "{$item["month"]}"."/"."{$item["year"]}");
$temp[] = array('v' => (int) $item["count"]);
}
$rows[] = array('c' => $temp);
}
$table['rows'] = $rows;
$jsonTable = json_encode($table);
?>
And the graph script:
<script type="text/javascript">
// Load the Visualization API and the piechart package.
google.load('visualization', '1', {'packages':['corechart']});
// Set a callback to run when the Google Visualization API is loaded.
google.setOnLoadCallback(drawChart);
function drawChart() {
// Create our data table out of JSON data loaded from server.
var data = new google.visualization.DataTable(<?=$jsonTable?>);
var options = {
title: 'User Transaction Statistics',
is3D: 'true',
width: 800,
height: 600
};
// Instantiate and draw our chart, passing in some options.
// Do not forget to check your div ID
var chart = new google.visualization.LineChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
</script>
<div id="chart_div"></div>
But I am not getting the expected chart. It should have dates (5/2016
, 6/2016
, 7/2016
) as label and three line charts corresponding to <15 min
, >15 & <60
and >60
.
But instead I am getting this :