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

12
script/35_LinePlotStyles.js Executable file
View File

@@ -0,0 +1,12 @@
///////////////////////////////////////////////////////////////////////////////////////////////////
// Example changing plot styles
///////////////////////////////////////////////////////////////////////////////////////////////////
data = [0,3,5,1,3,5,3,4,3,2,1,0]
plots = plot([data, data, data], ["normal", "step", "spline"])
p1 = plots[0]
p2 = plots[1]
p3 = plots[2]
p2.setStyle(LinePlotStyle.Step)
p3.setStyle(LinePlotStyle.Spline)