摘要: 汉字好像是一个区间呢 axisX = QCategoryAxis() axisX.append("first",0) axisX.append("0分25秒",25) axisX.append("0分50秒",50) axisX.append("1分15秒",75) axisX.setLabelsC 阅读全文
posted @ 2023-05-15 20:19 祥瑞哈哈哈 阅读(240) 评论(0) 推荐(0)
摘要: import sysfrom PyQt5.QtCore import Qt,QPointFfrom PyQt5.QtGui import (QPainter, QPen, QColor, QFont, QBrush, QLinearGradient, QGradient)from PyQt5.QtW 阅读全文
posted @ 2023-05-15 20:02 祥瑞哈哈哈 阅读(82) 评论(0) 推荐(0)
摘要: pen = QPen(QColor(0x059605)) pen.setWidth(3) lineSeries.setPen(pen) lineSeries.setPointsVisible(True) 阅读全文
posted @ 2023-05-15 17:34 祥瑞哈哈哈 阅读(510) 评论(0) 推荐(0)
摘要: chart.removeAllSeries()去掉chart内的所有折线图,因此你想重新绘制可以采用此方法去除。 阅读全文
posted @ 2023-05-15 15:29 祥瑞哈哈哈 阅读(95) 评论(0) 推荐(0)