Home › Forums › Chart Support › Issue observed when plotting Y axis values › Reply To: Issue observed when plotting Y axis values
This is not a problem with canvasjs, but with JavaScript. If you write this code: var x = 012.5; Will give a SyntaxError.
var x = 012.5;
Br, Daniel