gonewandering / angles

An angular.js wrapper for Chart.js
MIT License
632 stars 87 forks source link

set the canvas width to window.innerWidth #56

Closed songrit closed 10 years ago

songrit commented 10 years ago

For mobile app, is it possible to set the canvas to full width, I try $('canvas').width=window.innerWidth but nothing shows up.

songrit commented 10 years ago

I got it, I change line 28 to ctx.canvas.width = $scope.width || $elem.width || window.innerWidth || ctx.canvas.width; now if I don't specify width it'll just use window.innerWidth