In the options:
xaxis: {mode: "time", timeformat: "%b %m"}
Using the time plugin.
The data has to be converted to timestamps as explained in the link. As you have 0 in the day, maybe something like:
tstamp = new Date(dat[0]*1000*3600*24*30*12+dat[1]*1000*3600*24*30)