| 
<?php 
 include_once '../d3.classes.inc.php';
 include_once '../google.classes.inc.php';
 include_once '../element.php';
 
 echo func()->add(
 google()->visualization->drawChart(obj(array(
 "containerId"         => "visualization_div",
 "dataSourceUrl"     => "https://spreadsheets.google.com/a/google.com/tq?key=pCQbetd-CptGXxxQIG7VFIQ&pub=1",
 "query"             => "SELECT A,D WHERE D > 100 ORDER BY D",
 "refreshInterval"     => 5,
 "chartType"         => "Table",
 "options"             => array(
 "alternatingRowStyle" => true,
 "showRowNumber"  => true
 )
 ) ) )
 )->getVar("drawVisualization");
 
 |