score:5

Accepted answer

Change yaxis to yAxis, and the value must be a number not a string.

You have this:

{
     "name": "Series2",
     "type": "column",
     "yaxis": "1",
     "data": [22300, 44, 22, 12456, 888]
 }

Must be this:

{
    "name": "Series2",
    "type": "column",
    "yAxis": 1,
    "data": [22300, 44, 22, 12456, 888]
}]

jsFiddle: http://jsfiddle.net/QgHHZ/5/


Related Query

More Query from same tag