Questions tagged [radar-chart]

A radar chart graphically displays the values of three or more categories along a separate axis that starts in the center of the chart.

A radar chart, also known as a spider chart or a star chart, graphically displays the values of three or more categories along a separate axis that starts in the center of the chart.

367 questions
41
votes
5 answers

creating "radar chart" (a.k.a. star plot; spider plot) using ggplot2 in R

I want to create a plot like the one below: I know I can use the radarchart function from fmsb package. I wonder if ggplot2 can do so, using polar coordinate? Thanks.
lokheart
  • 23,743
  • 39
  • 98
  • 169
39
votes
9 answers

Chart.js and long labels

I use Chart.js to display a Radar Chart. My problem is that some labels are very long : the chart can't be display or it appears very small. So, is there a way to break lines or to assign a max-width to the labels? Thank you for your help!
CedricParkerLewis
  • 403
  • 1
  • 4
  • 6
28
votes
3 answers

Plot over multiple pages

I have the facet_wrap function to make multiple graphs (n=~51) but they all appear on one page. Now after searching, I found out that ggplot2 can't place graphs on multiple pages. Is there a way to do this? I looked at this question (Multiple…
LearningTheMacros
  • 421
  • 1
  • 4
  • 8
17
votes
1 answer

Ugly drawing of MS asp.net radar chart

I'm using the MS asp.net charting controls. And I'm using the radar chart to draw some values, but for some reason, the lines of the X-axis doesn't really meet in the middle. I have set the LineWidth = 1, but the line still takes like 2 pixels and…
Markus
  • 1,614
  • 1
  • 22
  • 32
16
votes
2 answers

What's the most effective way to implement a radar plot with 50 points at arbitrary locations using chart.js

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 data on a radially scaled plot (i.e. circular bands indicating how high the value of each point is) to show…
Jon Cage
  • 36,366
  • 38
  • 137
  • 215
12
votes
1 answer

Axis label hidden by axis in plot?

I am trying to make a polar 'sypder' plot but I am having some problems with the axis labels. The xaxis tick lables always seem to end up on a layer below the y axis grid (the letters are covered by the grid line, as shown in the figure below), I…
esperluette
  • 1,792
  • 2
  • 14
  • 21
8
votes
2 answers

How can i integrate Radar Overlay on MapView?

I want to Integrate Weather radar on my MapView.Please anyone help on doing this task.I have done so many googling but not get succeed.Please check this image i wanted to do like this.
Ankit Vyas
  • 7,507
  • 13
  • 56
  • 89
8
votes
2 answers

Chartjs radar indexed labels

I am using chartjs to draw a radar chart. The value is shown on hover in the point of the chart, but I would like to show the value always. I need to change the view to show the data when I print the page. This is my current chart. The label is…
Zuri
  • 312
  • 3
  • 18
7
votes
2 answers

MPAndroidChart RadarChart collapses itself

I have some problems with RadarChart labels. Specifically, if I use long texts (e.g. 15-20 chars), and the available space is not too big, the chart gets collapsed and the labels are positioned inside the collapsed chart (but there is clearly more…
Sleeper9
  • 1,707
  • 1
  • 19
  • 26
7
votes
1 answer

Add unit labels to radar plot and remove outer ring ggplot2 (spider web plot, coord_radar)

I've been working on a radar plot recently and found a great bit of code on from Erwan Le Pennec. I've made a few edits, however there are some parts I couldn't work out how to remove the outermost circle as it doesn't define a value. Currently the…
pr1g114413085
  • 155
  • 1
  • 11
7
votes
1 answer

How to remove polar gridlines and add major axis ticks

Could someone please help me remove the gridlines that form the rings inside my polar plot. I'd like to keep (and even bold) the axes and add ticks for each of the axis labels. Here is the code that I'm working with, an image of the plot, and an…
JA2
  • 161
  • 3
  • 10
7
votes
1 answer

Cannot read property 'labels' of undefined

I am just learning how chart.js works so I have used the example code directly off of chart.js API page and it doesn't seem to work. I places the following code in the script tag and I get a " Cannot read property 'labels' of undefined" error. Not…
GrizzlySol
  • 132
  • 1
  • 2
  • 8
7
votes
3 answers

Interactive spider or radar chart using d3

I'm looking for a spider chart/radar chart for HTML/javascript that is also interactive. I would like the user to move all the endpoints and store the end result. I have been searching for a while and although I have found some nice chart components…
user1997332
  • 113
  • 1
  • 4
6
votes
3 answers

ChartJS Radar Chart radar lines color?

So i have been researching a lot about this and haven't found a solution, i want to change the colors of the radar lines as seen below: Is there a way to do that? Here is my current code: new Chart(document.getElementById("result_chart"), { …
Fadi Obaji
  • 1,454
  • 4
  • 27
  • 57
6
votes
1 answer

Python animated radar chart

I'm trying to create a radar chart using Python / Matplotlib where measured data can be "played back" using matplotlib's built in animation module. I want the data points to move along their respective axes as the data set is traversed. I have…
esvendsen
  • 83
  • 1
  • 6
1
2 3
24 25