我在 Pyx 模块中使用 Python 绘制:
g = graph.graphxy(width=8,
x=graph.axis.linear(min=0, max=2),
y=graph.axis.linear(min=0, max=2),
)
g.plot([graph.data.function("x(y)=y**4")],
[graph.style.line([style.linestyle.dotted])])
g.writeEPSfile("plot")
如何更改虚线中点之间的间距?