score:0

Your data returns string as y values, instead of number. I.e parseFloat(24.00).toFixed(2), is incorrect, because returns "24.00" not 24.00

You can use something like this:

parseFloat(parseFloat(24.00).toFixed(2));

Related Query

More Query from same tag