plot(x, y) #默认为蓝色实线



plot(x, y, 'r*') #红色星状标记



plot(x, y, 'go-') #带有圆圈标记的绿线



plot(x, y, 'ks:') #带有正方形标记的黑色虚线



用PyLab库绘图的基本颜色格式命令

颜色

 

‘b’

蓝色

'g'

绿色

'r'

红色

'c'

青色

'm'

品色

'y'

黄色

'k'

黑色

'w'

白色

用PyLay库绘图的基本线型格式命令




线型

 

'-'

实线

'--'

虚线

':'

点线

用LyLab库绘图的基本绘制标记格式命令




标记

 

'.'


'o'

圆圈

's'

正方形

'*'

星形

'+'

加号

'x'

叉号

 



PlotDataItem绘制线格式命令



线型

 

虚线

--

QtCore.Qt.DashLine

实线

-

QtCore.Qt.CustomDashLine

点划线.-

DashDotLine

点线.

DotLine

点点线..-

 

DashDotDotLine

定制虚线

CustomDashLine

eg:
self.curveLowerLimit=pg.PlotDataItem()
# 虚线DashLine -- ,实线SolidLine -,点划线DashDotLine,点线DotLine,点点线DashDotDotLine,定制虚线CustomDashLine
# pen = pg.mkPen(color="w", width=1, style=QtCore.Qt.CustomDashLine)
# pen.setDashPattern([1, 4, 5, 4])
pen = pg.mkPen(color="w", width=1,style=QtCore.Qt.DashLine)