I\'m making a chart with chart.js and I\'m trying to figure out how I can change the label/legend styling. I want to remove the rectangle part and instead use a circle. I\'v
for angular4-chart.js you could use the options attribute like so:
options = { legend:{ display: true, labels: { usePointStyle: true, } } }