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