0
PyQtgraph Y軸標籤以科學記數法顯示。我不想讓它成爲科學記數法。什麼是將標籤更改爲非科學的代碼。PyQtgraph y軸標籤非科學記數法
科學記數法 - 1.70(X1E + 06)
非科學記數法1700000(我想在非科學記數法來顯示Y軸)。
from main()函數我調用addXYZ添加等高線,然後我調用Show2dPlot顯示等高線圖。
##### add the XY contour line to plot #####
def addXYZ(self, X, Y, Z):
self.plotwin.plot(X, Y, pen=(255,255,255))#cmap=cm.coolwarm)
##### Format 2D Plot #####
def Show2dPlot(self):
self.plotwin.setLogMode(x=False, y=False)
self.plotwin.showGrid(x=True, y=True)
self.plotwin.setLabel('left', "Easting")# units='A')
self.plotwin.setLabel('bottom', "Northing") #, units='s')
self.plotwin.setAspectLocked()
self.plotwin.set_scientific(False) #I'm getting error in set_scientific
使用'set_scientific(假)' – RaminNietzsche
@RaminNietzsche我得到NameError,PyQtgraph可能沒有set_scientific。 :( –
你能分享你的代碼的一些部分? – RaminNietzsche