i am building a stats pack for one of the applications i have built and i would like to have 8 graphs on the page showing different info. the problem is- whats the best way iterate through my data in a js file? (or add base_url() into style sheets?
i keep my js in root /scripts
currently i have 8 graphs with for my google charts-
function drawtwitterChart() {
var data = new google.visualization.DataTable();
data.addColumn('string', 'x');
data.addColumn('number', 'Twitter');
<?foreach($twitter_results->result_array() as $twitter_result){?>
data.addRow(["<?=$twitter_result['hour']?>", <?=goAssocArrayNumeric($twitter_result,0)?>]);
<?}?>
// Set chart options
var options = {'title':'How Much Pizza I Ate Last Night',
'width':300,
'height':250};
new google.visualization.LineChart(document.getElementById('twitter_chart_div')).
draw(data, {curveType: "function",
width: 400, height: 320,
vAxis: {maxValue: 10}}
);
}
all this is in the header of my page, i would like to remove this and place it into js files? need to still iterate through the data- wondering how others do this?