Skip to content

Instantly share code, notes, and snippets.

@sisiwei
Created September 27, 2014 03:20
Show Gist options
  • Save sisiwei/4eadb4d46f7a39c72f58 to your computer and use it in GitHub Desktop.
Save sisiwei/4eadb4d46f7a39c72f58 to your computer and use it in GitHub Desktop.
$.each(allSessionNames, function(k,v){
var chartData = [];
$.each(array, function(key,val){
if (v["_source"]["sessionName"] == v["sessionName"]){
chartData.push( parseInt(v["_source"]["duration"]) );
}
})
drawGraph(chartData);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment