I am trying to dynamically adjust the number of decimal places shown in the axis labels. I have found if I simply set the labels object to:
Code:labels: { stringFormat: "%0.2f" }
I don't get what I want, but if I add a percent sign using
Code:labels: { stringFormat: "%0.2f%%" }
then the number of decimal places is correct. Any idea as to why this would be?