Draw Line chart in jQuery using data from an AJAX request -


i trying generate line chart in jquery. here ajax request code:

var querystring = window.location.search; $.ajax({     url: '/turnover/drawlinechart'+ querystring,      cache: false,     type: 'post',     datatype: 'json',     success: function (response) {         ?????????     }, } }); 

here data in response:

enter image description here

how can draw line chart using data? here x-axis data static (jan, feb, mar, apr, may, jun, jul, aug, sep, oct, nov, dec). in response have y-axis data. please me. thank you.


Comments

Popular posts from this blog

Capture and play voice with Asterisk ARI -

c++ - Can not find the "fiostream.h" file -

java - Why database contraints in HSQLDB are only checked during a commit when using transactions in Hibernate? -