The Graph is not getting plotted. the issue is in index.html
var beans = typeFilter != ''
? json[0].beans.filter(function(b){ return beanTypeContains(b, typeFilter)})
: json[0].beans;
json[o].beans is undefined.
but the app.js line 41 res.send(body) is able to send the response. Seems like some issue with parsing the json form server
The Graph is not getting plotted. the issue is in index.html
var beans = typeFilter != ''
? json[0].beans.filter(function(b){ return beanTypeContains(b, typeFilter)})
: json[0].beans;
json[o].beans is undefined.
but the app.js line 41 res.send(body) is able to send the response. Seems like some issue with parsing the json form server