So multiple y-axes are supported as shown here:
http://people.iola.dk/olau/flot/examples/multiple-axes.html
This doc seems to indicate that you can have 2 x-axes: https://github.com/bluesmoon/yui-flot/wiki/API-Documentation---Axes but fails to really explain how it works;
my best guess right now is that you have to have multiple datasets, so you'd have to have a day-by-day series and a month-by-month series, and assign each to a different axis. But I haven't been able to get it to work.
Instead of my single x-axis:
xaxis: { show: false, tickFormatter: nanometers },
I'm using this line:
xaxes: [{ tickFormatter: nanometers }, { tickFormatter: function(n) { return n+"cm^-1" } }],
No luck so far, tell me if you get anywhere!
UPDATE
OK, got it - you have to assign the second dataset to the second axis like this:
data = [{label: "Title",data:[1,2,3,4,5]},{data:[2,4],xaxis:2}]