0

Here's the sample code with my result jsfiddle preview!

My question is how could I make the maximum point manually instead of 500 in the radar's label.

It's just a table-SVG converter I am doing.

series_data
is a Array come from table each of sources <td>.

Normally I want a max point of datas is 100, but it always count me with 500, whats the matter?

Please help.

Thanks.

Cyril
  • 3
  • 4

1 Answers1

0

You need to add numeric values in the series.data arrays.

In your code change this line:

axes_datas.push($(this).text());

with:

axes_datas.push(parseFloat($(this).text()));

Dragan Matek
  • 507
  • 1
  • 3
  • 6