New ScreenPanel

This commit is contained in:
2018-01-19 10:56:53 +01:00
commit ae4d621609
580 changed files with 46598 additions and 0 deletions

9
script/test/TestErrorAxis2.py Executable file
View File

@@ -0,0 +1,9 @@
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)