Author Topic: (Added in ECB 1.1) Spider / radar charts ?  (Read 4514 times)

offpiste_man

  • Tadpole
  • *
  • Posts: 1
  • Karma: +0/-0
    • View Profile
(Added in ECB 1.1) Spider / radar charts ?
« on: April 09, 2011, 09:53:31 AM »
Hi Easy Chart Builder,

Have you any plans to add a spider / radar chart functionality to this plug in ?

BWs
James
« Last Edit: April 29, 2011, 03:17:18 PM by support »

doug@dyerware.com

  • Administrator
  • Sr. Member
  • *****
  • Posts: 456
  • Karma: +15/-0
    • View Profile
    • Email
Re: Spider / radar charts ?
« Reply #1 on: April 09, 2011, 01:43:10 PM »
Chart types that have very different data organizations can be difficult to integrate with the existing code.  Let me have a look at it and see if I can add one or both for the next update.

doug@dyerware.com

  • Administrator
  • Sr. Member
  • *****
  • Posts: 456
  • Karma: +15/-0
    • View Profile
    • Email
Re: (Added in ECB 1.1) Spider / radar charts ?
« Reply #2 on: April 29, 2011, 03:19:05 PM »
Both are now in.

Note that in scatter plots the data is interpreted as xy pairs (i.e. groupXValues="x1,y1,x2,y2,...")

Here is a scatter plot to try:
Code: [Select]
[easychart type="scatter" height="100" title="title" groupnames="G1,G2" valuenames="V1,V2,V3,V4" group1values="10,20,30,40,50,60,70,80" group2values="15,25,35,45,55,65,75,85"]
Here is a radar plot to try:
Code: [Select]
[easychart type="radar" height="100" title="title" groupnames="G1,G2" valuenames="V1,V2,V3,V4,V5,V6,V7,V8,V9" group1values="63,64,67,73,77,81,85,86,85,81,74,67,63" group2values="6,6,6,7,7,8,8,8,8,8,7,6,6"]

 

anything