From 6baf4efdb208a25bb662384603244e0af8144a67 Mon Sep 17 00:00:00 2001 From: sfop Date: Wed, 19 Oct 2016 11:39:42 +0200 Subject: [PATCH] Script execution --- script/KR84_test_plot.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 script/KR84_test_plot.py diff --git a/script/KR84_test_plot.py b/script/KR84_test_plot.py new file mode 100644 index 0000000..38bb932 --- /dev/null +++ b/script/KR84_test_plot.py @@ -0,0 +1,19 @@ +#test KR84, 19.10.2016 + +[py]=plot([None,],["y"], title="OUT") + +#Y error plot +py.setStyle(py.Style.ErrorY) +py.setLegendVisible(True) + +sy1 = LinePlotErrorSeries("F1") +py.addSeries(sy1) +sy1.setLinesVisible(False) +sy1.appendData(1.0, 10.0, 9.0, 11.0) +sy1.appendData(10.0, 6.1, 4.34, 7.54) +sy1.appendData(17.8, 4.5, 3.1, 5.8) + + + +m=py.addMarker(2.0, py.AxisId.X, "Text",py.background) +m.setLabelPaint(Color.BLACK)