Hi folks,
My pyqtgraph example library suddenly stopped working:
import pyqtgraph.examples
pyqtgraph.examples.run()
I get
TypeError whichever example I try to run. it seems that plotting symbols is not longer supported. For instance this code:
import pyqtgraph as pg
pg.plot([0,1,2],[0,1,2], symbol='o')
will produce
TypeError.
Somebody else with the same problem?