1

I'm trying to plot a simple Polar Scatter Plot like this.

enter image description here

How do I do it using Chart.js?

Rishabh Shah
  • 541
  • 7
  • 28
Ahmed Fouzan
  • 94
  • 1
  • 10

1 Answers1

1

Chart.js is limited to creating polar charts that look like this. If you want a higher degree of control to look exactly like the image you've posted, I would look into something like d3. If you're new to data visualization, I'd start with chart.js. They make it straightforward to initialize a polar chart.

new Chart(ctx, {
    data: data,
    type: 'polarArea',
    options: options
});

Here's a fiddle of what the code would look like. http://jsfiddle.net/eHmSr/110/

Joseph Cho
  • 4,033
  • 4
  • 26
  • 33