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:
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
Post a Comment