Hello, I'm French too, so you can contact me personally if you want
to.
Actually, you can't invert the axes with a simple option, but you can
invert your data like this :
[[0, 3], [1, 2], [2, 7], [3, 1], [4, 8], [5, 4]]
to become
[[0, 4], [1, 8], [2, 1], [3, 7], [4, 2], [5, 3]]
And set the ticks like this :
yaxis.ticks = [[0, "5"], [1, "4"], [2, "3"], [3, "2"], [4, "1"], [5,
"0"]]
But the track formatter will take the transformed data in the track
info, so you'll need to translate this data into real data in the
trackFormatter function.
Hope this helps !
The invert feature could be useful, I'll add it to the TODO list.
Fabien