📜  图层顺序 matplotlib - PHP 代码示例

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

代码示例1
import matplotlib.pyplot as plt

lineWidth = 20
plt.figure()
plt.plot([0,0],[-1,1], lw=lineWidth, c='b',zorder=10)
plt.plot([-1,1],[-1,1], lw=lineWidth, c='r',zorder=5)
plt.plot([-1,1],[1,-1], lw=lineWidth, c='g',zorder=0)
plt.show()