Consider a sequence of data along the following lines:
data = [{angle:1.2,value:1.2},...,{angle:355.2: value:5.6}];
I\'d like to display this d
https://stackblitz.com/edit/js-jp4xm4?file=index.js
beforeUpdate
so you don't have to worry about converting before every update: { color: 'transparent' }
and ticks: { display: false }
min
and max
(options in ticks
) of both axes equal so that the orgin is at the center(Update 1)
(Update 2)
beforeDraw
plugin to fill the ctx
with light blue color as the OP wanted PS: (Pointing out just to be a little competitive) I have used chartjs (unlike other answers) because the OP wants a chartjs solution as it's clearly written in the question: "using chart.js". There might be solutions better than chartjs but that's irrelevant.