摘要:
axis=QValueAxis()#创建坐标轴 axis.setRange(0, 75)#比较重要,没有这个不会出坐标轴,诙谐数值 #axis.setLabelFormat("%d") axis.setTickCount(4)#对应竖线 axis.setGridLineVisible(False)# 阅读全文
摘要:
axisx.setGridLineVisible(True) 阅读全文
摘要:
chartView = QChartView(chart,Form) chartView.setRenderHint(QPainter.Antialiasing) chartView.setGeometry(QtCore.QRect(400, 400, 771, 701))左上角的x,y值和宽高 阅读全文
摘要:
在按钮的样式表里输入以下代码 QPushButton{color: rgb(102, 131, 156); background-color: rgb(37, 43, 51); border-radius:10px; } QPushButton:hover{ background-color: rg 阅读全文
摘要:
在设计样式表中加入border: none; 阅读全文
摘要:
import sys from PyQt5.QtWidgets import QApplication, QMainWindow if __name__ == '__main__': app = QApplication(sys.argv) MainWindow = QMainWindow() ui 阅读全文