master #43

Merged
QAQ merged 16 commits from master into QAQ 2025-05-24 10:54:54 +08:00
Showing only changes of commit 6ff728b21f - Show all commits

View File

@ -333,10 +333,13 @@ class MyPlugin(Star):
day.append(date[i][0])
volume.append(date[i][1])
plt.plot(day, volume)
plt.title('日产量')
plt.xlabel('日期')
plt.ylabel('日产量')
plt.title('dayvolume')
plt.xlabel('day')
plt.ylabel('volume')
plt.xticks(day)
#设置显示数据
for x, y in zip(day, volume):
plt.text(x, y, f'{y}', ha='center', va='bottom', fontsize=10)
plt.grid()
plt.savefig('dayvolume.png')
plt.close()