My DateAxisItem axis is not displayed when calling the invertY() function. 
To be precise the values that we would normally see on the axis disappears. 
It does work if it's a normal AxisItem or if we don't call invertY() but I 
want it inverted. Here is my code example :
```
import pyqtgraph as pg
from PyQt5.QtWidgets import QApplication

app = QApplication([])
plot = pg.plot()
x = pg.AxisItem(orientation="top")
y = pg.DateAxisItem(orientation="left")
plot.getPlotItem().hideAxis("bottom")
plot.getPlotItem().setAxisItems({"top": x, "left": y})
plot.getPlotItem().getViewBox().invertY(True)
app.exec_()
```

Is it a bug or did I do something wrong ?

-- 
You received this message because you are subscribed to the Google Groups 
"pyqtgraph" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/pyqtgraph/645c3a36-4379-4c90-90c0-7868a0e63008n%40googlegroups.com.

Reply via email to