Last active
December 19, 2015 15:19
-
-
Save cjsaylor/5975323 to your computer and use it in GitHub Desktop.
Google Visualization Example and HTML output
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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