9 lines
332 B
Python
Executable File
9 lines
332 B
Python
Executable File
plt = plot(None)[0]
|
|
plt.clear()
|
|
plt.getAxis(plt.AxisId.Y).setLabel("Axis 1")
|
|
plt.getAxis(plt.AxisId.Y2).setLabel("Axis 2")
|
|
plt.setStyle(plt.Style.ErrorY)
|
|
plt.addSeries(LinePlotErrorSeries("S1"))
|
|
plt.addSeries(LinePlotErrorSeries("S2", None, 2))
|
|
plt.getSeries(0).appendData(1.0, 3.0 , 1.0)
|
|
plt.getSeries(1).appendData(3.0, 2.0 , 2.0) |