我正在用谷歌的Visualization Chart API繪製折線圖,它每30分鐘簡單地改變一次導數(整數)。在這裏我做了什麼至今:避免在Google可視化圖表API中繪製兩次相同的點
google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart);
function drawChart() {
var jsonData = 'json string goes here';
var report = $.parseJSON(jsonData); //make it a json object
var data = new google.visualization.DataTable();
data.addColumn('timeofday', 'Time');
data.addColumn('number', 'Leads');
var interval = 1000 * 60 * 30; //interval of 30mins
var graphData = report['rush_hour_reports'];
var length = graphData.length;
var normalized_data = {}; //placeholder object
for(var i=0; i<length; i++){
var dt = new Date(graphData[i]['my_hour']); //date obj from timestamp
//next we round of time in chunks of 30mins(interval)
var dt_rounded = new Date(Math.round(dt.getTime()/interval) * interval);
//check if that time exits, if yes & sum the new lead count with old one as time is same
// Else, just create a new key with timestamp
if(typeof normalized_data[dt_rounded] == 'undefined'){
normalized_data[dt_rounded] = graphData[i]['lead_count'];
}else{
normalized_data[dt_rounded] += graphData[i]['lead_count'];
}
for(key in normalized_data){
if(normalized_data.hasOwnProperty(key)){
var dt = new Date(key);
var hrs = parseInt(dt.getHours(), 10);
var mins = parseInt(dt.getMinutes(), 10);
//add the data into Google Chart using addRow
data.addRow([ [hrs, mins,0], parseInt(normalized_data[key], 10) ]);
}
}
}
var format = new google.visualization.DateFormat({pattern: 'h:mm a'});
console.log(normalized_data);
data.sort(0); //sort it, just in case its not already sorted
format.format(data, 0);
var options = {
title: 'Company Performance',
fontSize: '12px',
curveType: 'function',
animation:{
duration: 1000,
easing: 'out',
},
pointSize: 5,
hAxis: {title: report.time_format,
titleTextStyle: {color: '#FF0000'}
},
vAxis: {title: 'Leads',
titleTextStyle: {color: '#FF0000'}}
};
var chart = new google.visualization.LineChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
現在,這是該圖表的呈現方式: http://ubuntuone.com/3NMEtWYkhQSCHx4RERVcgq
如果你仔細注意它仍然有兩個引計數在同一時間被描繪這是錯誤的(例如在6:30或7:30),相反,如果他們在同一時間,它應該做一個總數/總數。
我在這裏做錯了什麼?
郵政JSON字符串的樣本,我會看一看。 – asgallant
JSON字符串本身嵌入在此頁面中(http://ubuntuone.com/3NMEtWYkhQSCHx4RERVcgq)。沒有在這裏發佈它會引起很大的噪音 – CuriousMind