I want to design the interactive dashboard with different charts with real 
time data

>From the following code i am filling the dataTable for plotting the 
different chart on the dashboard by querying the  bellow arrayToDataTable

I want to know what is the maximum no of rows that following dataTable can 
handle  


var data = google.visualization.arrayToDataTable([
        ['id', 'state', 'town', 'area', 'pin', 'user_id', 'auto_credit', 
'date', 'time', 'outlet_status', 'verified_status']

            <?php
            if($query_run){
                while($row = mysql_fetch_assoc($query_run)){
            ?>

            <?php echo 
",[{$row['id']},'{$row['state']}','{$row['town']}','{$row['area']}','{$row['pin']}','{$row['user_id']}',{$row['auto_credit']},'{$row['date']}','{$row['time']}',{$row['outlet_status']},{$row['verified_status']}]";
 
?>
            <?php
                }
            }
            ?>
        ]);

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to