I\'m trying out the example code for Chart.js given in the docs.
Width and height is specified inline on the canvas element at 400px/400px.
But when renderin
You can also simply surround the chart with container (according to official doc http://www.chartjs.org/docs/latest/general/responsive.html#important-note)
CSS
.chart-container { width: 1000px; height:600px }
and with options
responsive:true maintainAspectRatio: false