pyqtgraph, plotting time series
I'am trying to plot time serie with pyqtgraph. I've read this , this and this . But i'am not sure how to correctly use it. My plot is a plot widget, and i use it this way: graph.plot(aerosol_data, pen=pg.mkPen(color=colors[count], width=1, style=QtCore.Qt.SolidLine), axisItems={'bottom': TimeAxisItem(orientation='bottom')}) where TimeAxisItem is defined like this: class TimeAxisItem(pg.AxisItem): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) def tickStrings(self, values, scale, spacing): # PySide's QTime() initialiser fails miserably and dismisses args/kwargs return