Can't size doughnut chart from chart.js

chart.js, charts, css, html, javascript

Solution

try this in chart's option confirg

options = {
  maintainAspectRatio : false
}

Problem

Not sure how to set height/width for doughnut chart, tried with this: ``` <div style="height: 168px"> <canvas id="chart-area" style="height: 168px"/> </div> ``` I have text underneath the chart, and this only change the position of text & graph rather than the size of the doughnut chart. Any help will be appreciated.

Original source