How to style legend type from rectangle box to circle? pie chart using chartjs.org
You could accomplish so, by setting usePointStyle property to true for legend labels in your chart options, like this ...
usePointStyle
true
options: { legend: { labels: { usePointStyle: true //<-- set this } }, ... }