📜  matplotlib 样式 attr - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:26.178000             🧑  作者: Mango

代码示例1
style.use('Solarize_Light2')
plt.plot([1, 2, 3], [5, 2, 7])
plt.show()

style.use('default')
plt.plot([1, 2, 3], [5, 2, 7])
plt.show()

#We can see all the available styles by accessing the style.available attribute.
style.available