如何在pyqtgraph中设置跟踪名称?

时间:2018-11-12 03:28:24

标签: python pyqtgraph

我正在使用此类来绘制跟踪,我有2行要跟踪,但是我无法显示每行的名称,如何显示?

class Plot2D():
    def __init__(self):
        self.traces = dict()

        #QtGui.QApplication.setGraphicsSystem('raster')
        self.app = QtGui.QApplication([])
        #mw = QtGui.QMainWindow()
        #mw.resize(800,800)

        self.win = pg.GraphicsWindow(title="Detecting cluck")
        self.win.resize(1000,600)
        self.win.setWindowTitle('Detecting')
        # Enable antialiasing for prettier plots
        pg.setConfigOptions(antialias=True)

        self.canvas = self.win.addPlot(title="改装车检测")
        self.canvas.setYRange(0, 1)

    def start(self):
        if (sys.flags.interactive != 1) or not hasattr(QtCore, 'PYQT_VERSION'):
            QtGui.QApplication.instance().exec_()

    def trace(self,name,dataset_x,dataset_y,sColor):
        if name in self.traces:
            self.traces[name].setData(dataset_x,dataset_y)
        else:
            self.traces[name] = self.canvas.plot(
                pen=pg.mkPen(sColor, width=3), name="car")

我得到了什么

我得到了

我想要什么:

enter image description here

1 个答案:

答案 0 :(得分:0)

除了在绘图中建立名称外,还必须使用<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <a href="#" data-size="big" class="font_resize">bigger</a><br> <br> texttexttexttext

addLegend()

enter image description here

更新

如果要更改字体大小,可以使用HTML

import sys
from pyqtgraph.Qt import QtGui, QtCore
import pyqtgraph as pg
import numpy as np

class Plot2D():
    def __init__(self):
        self.traces = dict()

        self.app = QtGui.QApplication([])

        self.win = pg.GraphicsWindow(title="Detecting")
        self.win.resize(1000,600)
        pg.setConfigOptions(antialias=True)

        self.canvas = self.win.addPlot(title="改装车检测")
        self.canvas.addLegend()
        self.canvas.setYRange(0, 1)

    def start(self):
        if (sys.flags.interactive != 1) or not hasattr(QtCore, 'PYQT_VERSION'):
            QtGui.QApplication.instance().exec_()

    def trace(self,name,dataset_x,dataset_y,sColor):
        if name in self.traces:
            self.traces[name].setData(dataset_x,dataset_y)
        else:
            self.traces[name] = self.canvas.plot(dataset_x, dataset_y,
                pen=pg.mkPen(sColor, width=3), name=name)

if __name__ == '__main__':
    p = Plot2D()
    p.trace("name1", range(100), 0.5 + np.random.normal(size=100, scale=0.1), 'r')
    p.trace("name2", range(100), 0.5 + np.random.normal(size=100, scale=0.1), 'w')
    p.start()

enter image description here