This commit is contained in:
2018-04-17 12:05:48 +02:00
parent 14edc0e745
commit 58a1260003
428 changed files with 41350 additions and 477 deletions
+12
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)