Pregunta

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.

¿Fue útil?

Solución

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()));

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top