How can I make the label write out of the chart space? There is a lot of space, but the the remainder of label sentence is cut off due to the space.
This is the chart code:
<div class="col-md-5"> <div class="col-md-10" style="padding-top:50px"> <canvas id="caixa-chart" width="100" height="100"></canvas> </div> </div> //the chart <script> var myChartcaixa = new Chart(document.getElementById("caixa-chart"), { type: 'pie', data: { labels: @Html.Raw(Json.Encode(Model.Select(x => x.Descricao).ToArray())), datasets: [{ data: @Html.Raw(Json.Encode(Model.Select(x => x.Valor).ToArray())), backgroundColor: backgroudColor, borderWidth: 1, }] }, options: { legend: false, fontsize: 11 } }); </script> 