[Chartjs]-"The radius provided (-0.5) is negative" when used with Modal

5👍

Initialize the chart after the modal is loaded. You could do this in the shown.bs.modal handler

$('#myModal').on('shown.bs.modal', function (e) {
  // do something...
})

Leave a comment