2012-10-19 03:18:20 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2013-02-25 04:09:03 +00:00
|
|
|
"""
|
|
|
|
Demonstrates basic use of LegendItem
|
|
|
|
|
|
|
|
"""
|
2012-10-19 03:18:20 +00:00
|
|
|
import initExample ## Add path to library (just for examples; you do not need this)
|
|
|
|
|
|
|
|
import pyqtgraph as pg
|
|
|
|
from pyqtgraph.Qt import QtCore, QtGui
|
|
|
|
|
|
|
|
plt = pg.plot()
|
2013-02-25 04:09:03 +00:00
|
|
|
plt.setWindowTitle('pyqtgraph example: Legend')
|
2012-11-23 21:05:14 +00:00
|
|
|
plt.addLegend()
|
|
|
|
#l = pg.LegendItem((100,60), offset=(70,30)) # args are (size, offset)
|
|
|
|
#l.setParentItem(plt.graphicsItem()) # Note we do NOT call plt.addItem in this case
|
2012-10-19 03:18:20 +00:00
|
|
|
|
2014-01-19 04:30:03 +00:00
|
|
|
c1 = plt.plot([1,3,2,4], pen='r', symbol='o', symbolPen='r', symbolBrush=0.5, name='red plot')
|
2012-11-23 21:05:14 +00:00
|
|
|
c2 = plt.plot([2,1,4,3], pen='g', fillLevel=0, fillBrush=(255,255,255,30), name='green plot')
|
|
|
|
#l.addItem(c1, 'red plot')
|
|
|
|
#l.addItem(c2, 'green plot')
|
2012-10-19 03:18:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
## Start Qt event loop unless running in interactive mode or using pyside.
|
2012-12-05 05:25:45 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
import sys
|
|
|
|
if (sys.flags.interactive != 1) or not hasattr(QtCore, 'PYQT_VERSION'):
|
|
|
|
QtGui.QApplication.instance().exec_()
|