I'm using a integer sequence of values in highcharts, but it's adding .00 after each result. Any tips on how to solve that?

You can see the code i'm using here: http://jsfiddle.net/CAKQH/20425/
|
I'm using a integer sequence of values in highcharts, but it's adding .00 after each result. Any tips on how to solve that?
You can see the code i'm using here: http://jsfiddle.net/CAKQH/20425/ |
||||
|
|
|
The second argument for
http://api.highcharts.com/highcharts#Highcharts.numberFormat() |
||||
|
|
|
You were only missing one parameter for the |
|||
|
|
|
First of all, this is how your data look like -
0, 0, 0, 0, 0, 0, 0, 0, 353.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
^^^^^ ^^^
and it does not look like a sequence of integers (only). But, if it were really a sequence of integers as follows -
then you could just do -
and Highcharts would never add that ".00". |
|||
|
|