Skip to content

Instantly share code, notes, and snippets.

@cjsaylor
Last active December 19, 2015 15:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save cjsaylor/5975323 to your computer and use it in GitHub Desktop.
Save cjsaylor/5975323 to your computer and use it in GitHub Desktop.
Google Visualization Example and HTML output
<?php
$data = array(
'labels' => array(
array('string' => 'Sample'),
array('number' => 'Piston 1'),
array('number' => 'Piston 2')
),
'data' => array(
array('S1', 74.01, 74.03),
array('S2', 74.05, 74.04),
array('S3', 74.03, 74.01),
array('S4', 74.00, 74.02),
array('S5', 74.12, 74.05),
array('S6', 74.04, 74.04),
array('S7', 74.05, 74.06),
array('S8', 74.03, 74.02),
array('S9', 74.01, 74.03),
array('S10', 74.04, 74.01),
),
'title' => 'Piston Ring Diameter',
'type' => 'line'
);
echo $this->GChart->start('test');
echo $this->GChart->visualize('test', $data);
<div id="test"></div>
<script type="text/javascript">
google.load("visualization", "1", {packages: ["corechart"]});
</script>
<script type="text/javascript">
google.setOnLoadCallback(function() {
var data = new google.visualization.DataTable({"cols":[{"label":"Sample","type":"string"},{"label":"Piston 1","type":"number"},{"label":"Piston 2","type":"number"}],"rows":[{"c":[{"v":"S1"},{"v":74.01},{"v":74.03}]},{"c":[{"v":"S2"},{"v":74.05},{"v":74.04}]},{"c":[{"v":"S3"},{"v":74.03},{"v":74.01}]},{"c":[{"v":"S4"},{"v":74},{"v":74.02}]},{"c":[{"v":"S5"},{"v":74.12},{"v":74.05}]},{"c":[{"v":"S6"},{"v":74.04},{"v":74.04}]},{"c":[{"v":"S7"},{"v":74.05},{"v":74.06}]},{"c":[{"v":"S8"},{"v":74.03},{"v":74.02}]},{"c":[{"v":"S9"},{"v":74.01},{"v":74.03}]},{"c":[{"v":"S10"},{"v":74.04},{"v":74.01}]}]});
var chart = new google.visualization.LineChart(document.getElementById("test"));
chart.draw(data, {
width: 450,
height: 300,
is3D: true,
legend: "bottom",
title: "Piston Ring Diameter"
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment