I am using Chart.js (http://www.chartjs.org/docs/) for charting.
I need to get the data from an Ajax request and the chart to be responsive.
In my HTML code I added a canvas as follows:
<div> <canvas id="userscreated" class="plot" data-url="/stats/userscreated"></canvas> </div>
And in my javascript (JQuery) code I have:
var data2; $.ajax({ url: $('#userscreated').data('url'), async: true, dataType: 'json', type: "get", }).done(function (data) { data2 = data; // Draw chart var context = $('#userscreated').get(0).getContext("2d"); var wrapper = $('#userscreated').parent(); var width = $('#userscreated').attr('width', $(wrapper).width()); new Chart(context).Line( { labels: data.Dates, datasets: [ { fillColor: #404040, data: data.Users } ] }, { animation: false } ); }); // Redraw the chart with the same data $(window).resize(function () { var context = $('#userscreated').get(0).getContext("2d"); var wrapper = $('#userscreated').parent(); var width = $('#userscreated').attr('width', $(wrapper).width()); new Chart(context).Line( { labels: data2.Dates, datasets: [ { fillColor: #404040, data: data2.Users } ] }, { animation: false } ); });
PROBLEMS
You can make async AJAX calls no problem. It's just important that you setup the chart only after the success callback fires. Otherwise, you'll get issues with your canvas context not being defined. The first call to respondCanvas does the initial setup while the subsequent calls do the resizing.
Here is what works for me:
var max = 0; var steps = 10; var chartData = {}; function respondCanvas() { var c = $('#summary'); var ctx = c.get(0).getContext("2d"); var container = c.parent(); var $container = $(container); c.attr('width', $container.width()); //max width c.attr('height', $container.height()); //max height //Call a function to redraw other content (texts, images etc) var chart = new Chart(ctx).Line(chartData, { scaleOverride: true, scaleSteps: steps, scaleStepWidth: Math.ceil(max / steps), scaleStartValue: 0 }); } var GetChartData = function () { $.ajax({ url: serviceUri, method: 'GET', dataType: 'json', success: function (d) { chartData = { labels: d.AxisLabels, datasets: [ { fillColor: "rgba(220,220,220,0.5)", strokeColor: "rgba(220,220,220,1)", pointColor: "rgba(220,220,220,1)", pointStrokeColor: "#fff", data: d.DataSets[0] } ] }; max = Math.max.apply(Math, d.DataSets[0]); steps = 10; respondCanvas(); } }); }; $(document).ready(function() { $(window).resize(respondCanvas); GetChartData(); });
If you want to insert a small delay between calls, you can use a timeout:
$(document).ready(function() { $(window).resize(setTimeout(respondCanvas, 500)); GetChartData(); });
The delay will make your resizing more responsive in case you have a large dataset on your graph.
you can set that in chart.js
new Chart(context, { type:"line", labels: data.Dates, datasets: [ { fillColor: #404040, data: data.Users } ] options: { responsive: false } });
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With