The charts are working ok in most browsers, including firefox and Opera. However in IE I am getting:
Object doesn't support this property or method
report_graph.js
Code: 0
URI: http://10.11.4.92:5000/assets/report_graph.js?body=1

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
e.g. I had
$('some selectors).text().trim()Changing it to
$('some selectors).text().trim()fixed it.As it actually has worked ok in some browsers this seems to suggest an actual issue with the javascript engine in IE. Either it doesn’t support the method that other browsers do… or it does not handle the error as gracefully, causing a runtime exception for a error that other browser ignore.