Questions tagged [spider-chart]

A spider chart (also known as a polar or radar chart) is a graphical method of displaying multivariate data in the form of a two-dimensional chart of three or more quantitative variables represented on axes starting from the same point. The relative position and angle of the axes is typically uninformative.

A spider chart (also known as a polar or radar chart) is a graphical method of displaying multivariate data in the form of a two-dimensional chart of three or more quantitative variables represented on axes starting from the same point. The relative position and angle of the axes is typically uninformative.

(Modified from https://en.wikipedia.org/wiki/Radar_chart)

29 questions
6
votes
1 answer

Highcharts polar spider with multiple y-axis scale

I created a polar spider graph with highcharts http://www.highcharts.com/demo/polar-spider and I would like to know if it is possible to set scale (min and max) for each categories.
Tof
  • 301
  • 5
  • 17
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
2 answers

highcharts polar chart, move labels individually to fit small space

I have a polar chart diagram where I am trying to move two out of four labels on the x axis. It is a diamond shape in a narrow space, so the labels at the right and left are cut off. I'm trying to move them, but I can't get them to move. I'm…
Adam
  • 99
  • 7
3
votes
1 answer

How can we change spider chart background color?

Refer this image to see what i am looking at: With this code : const colors = [ColorRGBA(0, 255, 125, 0), ColorRGBA(255, 125, 0, 0)] const fillStyles = colors.map((color) => new SolidFill({ color: color.setA(150) })) const chart =…
3
votes
0 answers

How do I fill the spider panel for HighCharts?

Is it possible to fill those pie areas? If so, how? I mean, "A"(red) and "B"(purple) and the rest all.
AGamePlayer
  • 7,404
  • 19
  • 62
  • 119
3
votes
1 answer

Last y-axis label not displaying on highcharts spiderweb

I have spiderweb highchart with dynamically calculated x/y values and all labels of y-axis are displayed correctly except the last one. Did anyone have same problem? function GenerateSpiderWebChart(conteinerId,categories,values, color) { …
Igor
  • 33
  • 3
2
votes
1 answer

How do I make an interactive radar chart in r shiny?

I'm pretty new to r and shiny and I am currently working on my first personal project. My project is about Pokemon and I am currently having trouble creating an interactive radar chart. I have tried looking at other questions about on this website…
jejelim
  • 53
  • 4
2
votes
1 answer

How to make a spider plot in gnuplot?

Let's say my data is in the form: #atom a b c 43 1.2 1.3 1.4 44 1.2 1.4 1.8 45 1.3 1.8 1.9 46 2.0 2.3 2.4 47 1.5 1.6 1.8 And I want a plot like this one http://www.r-graph-gallery.com/143-spider-chart-with-saveral-individuals/ (the one in the…
murpholinox
  • 639
  • 1
  • 4
  • 14
2
votes
2 answers

Spiderweb Highcharts with multiple scales on multiple axes

My requirement is to create a spiderweb highchart with values on each axis where each axes have different scales.Is it possible? I have attached a same output of my requirement.
sanjaipt
  • 41
  • 1
  • 5
1
vote
2 answers

Pattern Style for first array for Spider Chart is missing

When I you run these instructions: array Array001=[97,45,15,42,22,31] array Array002=[53,22,76,76,53,12] array Array003=[12,14,43,44,98,75] set datafile separator comma set style data spiderplot set term windows unset xtics; unset ytics; unset…
1
vote
1 answer

How to make a radar chart with two different labels

I would like to reproduce the radar chart described here The main difference is that my data have two different spoke_labels import numpy as np import matplotlib.pyplot as plt from matplotlib.patches import Circle, RegularPolygon from…
Ahmed Attia
  • 153
  • 1
  • 8
1
vote
0 answers

radarchart in R - How to increase width of a single radial axis?

I am trying to increase the thickness of a single radial axis on my radar chart. In this instance, I want to make my radial axis that has a value 0 thicker than other radial axes. I have highlighted the image…
helixjolt
  • 23
  • 5
1
vote
0 answers

How to add a color gradient to a radar plot based on different absolute values at the center

I'm using fmsb package for radarplots on r to show the mean differences in grades in subjects V1-V9 compared to an arbitrary value (center of the radar plot). I would like the plot to convey this arbitrary value somehow and a color gradient would…
gfa2001
  • 227
  • 1
  • 2
  • 10
1
vote
1 answer

Adding tick marks on Thetagrid lines of a polar plot

I've adapted this sample: Matplotlib: Polar plot axis tick label location. I want to add tick marks next to the tick labels (A, B, C, D and E) along the thetagrid from the center of the polar axis to the thetagrid labels. Also, I want a round circle…
ewilan
  • 638
  • 6
  • 16
1
vote
0 answers

R plotly - radar plot legend

I’m having a new problem in the legend of the radar plot after changing the colors of each group. The legend shows the name of each group (which is correct) but it also shows the color name (the rgb code). It looks like this: test Is it possible to…
brunosm
  • 116
  • 1
  • 12
1
2