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
5
votes
1 answer

MS chart radar axis frequency

I'd like to draw a radar chart using MS Chart control in a WinForms app. This chart contains data for 1 day, I have data for every seconds, so I have 86 400 x-y value pairs. X axis contains dates, y my int values. My test code is like this: var…
Tom
  • 3,899
  • 22
  • 78
  • 137
5
votes
2 answers

How to make radar spider chart with pentagon grid using matplotlib and python?

I have a radar chart. Need to change the grid from circle-form to pentagon-form. Currently, I have this output: Whereas I expect smth like this: Here's the info about the system i have: Windows 10 (64-bit); Python - 3.8.0 (32-bit); matplotlib -…
KarapetEV
  • 51
  • 3
5
votes
2 answers

Chart.js different scaleLine color of radar chart (angular)

currently I am using radar-charts (chart.js) in my angular project. I' m want to change the scaleLineColor of the different section and don't know how to achieve this result: according to this new fix it should be possible:…
5
votes
1 answer

Generate radar charts with ggplot2

In order to ease reproducibility, you can download here the data. Its structure is: > str(data) 'data.frame': 30 obs. of 4 variables: $ Count: num -15.26 NaN NaN -7.17 -49.37 ... $ X1 : Factor w/ 1 level "Mean": 1 1 1 1 1 1 1 1 1 1 ... $ X2…
antecessor
  • 2,688
  • 6
  • 29
  • 61
5
votes
4 answers

R radarchart: free axis to enhance records display?

I am trying to display my data using radarchart {fmsb}. The values of my records are highly variable. Therefore, low values are not visible on final plot. Is there a was to "free" axis per each record, to visualize data independently of their…
maycca
  • 3,848
  • 5
  • 36
  • 67
5
votes
1 answer

Tutorial for python radar chart/plot

I want to do a radar plot in python but i don't know how to do it. I read some tutorials on the web and most of them are very complicated (drawing polygones, making calculations to place points, ...). So I wonder if someone have a "simple" tutorial…
Biopy
  • 167
  • 1
  • 5
  • 15
5
votes
0 answers

Overlapping labels on radarchart

Is there a way to avoid overlapping p axis labels? Have seen others suggest creating jitter, using direct.labels, etc., but have not found a way to make this work for radarchart{fmsb} Would be fine with a general pointer toward a radarchart option…
user5807201
  • 61
  • 1
  • 6
5
votes
1 answer

PHP Solution to Generate Radar Chart

A client of mine currently uses a ASP.net application that allows him to conduct a user survey based on 30 Questions and generate an Excel Report. The process is time consuming and labor intensive as it consists of 5-6 steps.. He wants a PHP…
Pankaj
  • 81
  • 1
  • 3
  • 8
4
votes
1 answer

Get as Image generates wrong image - Google App Script

My goal is to create google documents using information from a google sheet with google app script. I can generate a radar chart from the data in the google sheets. The radar chart looks like this: radar chart looking all good The issue: when I…
Bob
  • 43
  • 6
4
votes
1 answer

Change labels colors in R radarchart

I am looking for a solution to change the axes label colors in radarchart library(fmsb) # Create data: note in High school for several students set.seed(99) data=as.data.frame(matrix( sample( 0:20 , 15 , replace=F) ,…
delaye
  • 1,357
  • 27
  • 45
4
votes
1 answer

Is it possible to draw a radar chart in R where each circle has a different colour?

Using the fsmb package I created a simple radar chart. Here is a reproducible example: #install.packages("fmsb") library(fmsb) data <- data.frame(rbind(rep(8,14), rep(0,14), c(3,4,4,4,3,4,4,4,4,3,3,3,3,3))) colnames(data) <-…
Klaudia
  • 41
  • 2
4
votes
1 answer

Using radar/polar graphs to depict individual datapoints

This is following my previous post: How to measure the area of a polygon in ggplot2? What I would like now to do is to use the resulting radar charts as data points in a totally separate scatterplot or maybe save the object and use it later on…
NabAra
  • 61
  • 4
4
votes
1 answer

r combine ggRadar and facet_wrap

The code below illustrates my question. I want to use the ggRadar function in ggiraphExtra because it allows interaction with the graph. I want a separate spider graph for each nutrient and I want each spider graph to have a separate set of…
JerryN
  • 2,356
  • 1
  • 15
  • 49
4
votes
2 answers

Chart.js Radar Chart How to Remove Outer Labels

On mobile, these labels are taking up too much valuable space. How can I remove them while keeping the lines? I've tried several methods, ones that seem to work for typical x/y graphs, but can't find a way to achieve this for the radar chart.
blindmikey
  • 137
  • 1
  • 10
4
votes
1 answer

How to change the default label font type to italic in radarchart ("fmsb" package)?

I have created a radar chart for showing the variation of Cultural Indexes (CI) of a number of species with respect to the location. However, since species names must be written in italic or underlined, I need to change the default font type used…
1
2
3
24 25