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
4
votes
2 answers

ios-charts radar chart turn auto scaling OFF

These two radar charts have the same data points for the orange bit, but different for the gray. However, as you can see it is autoscaling, and the orange bit ends up bigger on the second chart, even though they are the same exact data points. Is…
HannahCarney
  • 3,441
  • 2
  • 26
  • 32
4
votes
1 answer

How to highlight regions of plot with gnuplot

I'd appreciate if somebody can help with this question. I am working with a radar (or spiderweb) plot with gnuplot 5.0.0: The scale and range in all axes is the same. The numbers at and beyond 1 have a special meaning and I would like to highlight…
Asttor
  • 43
  • 3
4
votes
6 answers

Closing the lines in a ggplot2 radar / spider chart

I need a flexible way to make radar / spider charts in ggplot2. From solutions I've found on github and the ggplot2 group, I've come this far: library(ggplot2) # Define a new coordinate system coord_radar <- function(...) { …
Fredrik Karlsson
  • 485
  • 8
  • 21
3
votes
3 answers

How can I plot a radar plot with values from columns?

I want to plot a radar plot like followed and replace the Var notations with the unique values of the rows and group it by the columns (right side is what I want to accomplish, ignore blue area): I have followed dataframe structure: #…
JAdel
  • 1,309
  • 1
  • 7
  • 24
3
votes
1 answer

ng2-charts angular radar exception

i want to display 2 component in a dashboard one radar and the other is line, so i have 3 separate component. when i implemented the radar component i started to get this exception in the radar component. ERROR NullInjectorError:…
3
votes
1 answer

Show point values in Radar Chart using chart.js

How can I show the values in the chart using chart.js? UPDATE: I am using the options below but I couldn't find any answer. options: { scale: { angleLines: { lineWidth: 0.5, color: 'rgba(128, 128, 128, 0.2)' }, …
melvik
  • 43
  • 1
  • 4
3
votes
1 answer

R plotly: How to connect lines on polar/radar chart?

I am creating a polar chart in R with plotly, but I don't want the values between lines to be filled with color. I found the line_close property for python library, but I can't find the equivalent in R. Chart code: library(plotly) p <- plot_ly( …
Anže Mur
  • 1,545
  • 2
  • 18
  • 37
3
votes
0 answers

Radar Chart flutter ( multi_charts)

How to add Line with circle point on the top of radar chart ( with the packages Multi_charts) like the pic below ; I could do this : ( im asking for how to make gradient color inside the GraphData )
GirlWhoCode
  • 628
  • 4
  • 12
3
votes
2 answers

Multiple line labels for chart js

I have this radar chart in chart.js which has 5 labels. The labels are quite long so I want to show them in two lines in HTML but when I use "\n" it doesn't make a new line! These are my labels: labels: ["COMMUNICATION \n SKILL ", "PRODUCT AND…
Moe
  • 67
  • 1
  • 1
  • 10
3
votes
0 answers

Adjusting axis-labels on radarchart (fmsb)

I have spent quite some time adjusting this radarplot, which will be used in about 200 auto-generated reports. The only issue that i cannot seem to solve, is that the axis-labels overlaps with axis-marks. In the attached example, the issue is…
Anders
  • 75
  • 1
  • 8
3
votes
1 answer

24 hours Radar chart in amcharts 4

I would like to create a Radar Chart. which satisfy below points in Amcharts The date should be changed to duration format eg. Yaxis: Jan Feb to 1 2 ..24 Show Xasix data in a format of startTiming and endTiming Jsfiddle { Shift:…
raju
  • 321
  • 4
  • 19
3
votes
1 answer

Change font size Radar Plot plotly

Does anyone know how can I change the size of the font? I attached a plotly code example. library(plotly) p <- plot_ly( type = 'scatterpolar', r = c(39, 28, 8, 7, 28, 39), theta = c('A','B','C', 'D', 'E', 'A'), fill = 'toself' ) %>% layout( polar =…
torakxkz
  • 483
  • 5
  • 17
3
votes
1 answer

pandas.DataFrame.drop dropped wrong label

I'm using the code from https://python-graph-gallery.com/391-radar-chart-with-several-individuals/ and after I change some label of it, it is not working anymore. I have a dataframe: df = pd.DataFrame({ 'group': ['A', 'B', 'C', 'D'], 'var1':…
YINGFENG
  • 39
  • 6
3
votes
1 answer

c# excel radar chart - how to change horizontal axis?

In my WPF application I allready exported data to Excel to plot them in a radar chart, just to re-import this chart to the application. I need to do this for real-time analysis of the data and with WPF toolkit I couldn't create radar charts yet (I…
Booma
  • 261
  • 6
  • 19
3
votes
3 answers

Excel rotate radar chart

I have been trying to create a windrose that displays the occurence of multiple wind speeds and their respective wind direction. Using other very helpful posts on here I've gotten pretty close to what I want. There is just one thing I can't seem to…
Alex
  • 941
  • 3
  • 11
  • 23
1 2
3
24 25