summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorjoye <joye>2014-03-17 21:35:18 (GMT)
committerjoye <joye>2014-03-17 21:35:18 (GMT)
commit616e63f07f6fb11f568c68cb84df210dac876753 (patch)
tree2ed56818f4a36d6bdea3e775a02f41f97aff9e97 /tests
parente397c807bc33cf9af19714912ffb69a30b4014b6 (diff)
downloadblt-616e63f07f6fb11f568c68cb84df210dac876753.zip
blt-616e63f07f6fb11f568c68cb84df210dac876753.tar.gz
blt-616e63f07f6fb11f568c68cb84df210dac876753.tar.bz2
*** empty log message ***
Diffstat (limited to 'tests')
-rw-r--r--tests/linemarker.tcl46
1 files changed, 46 insertions, 0 deletions
diff --git a/tests/linemarker.tcl b/tests/linemarker.tcl
new file mode 100644
index 0000000..e3df272
--- /dev/null
+++ b/tests/linemarker.tcl
@@ -0,0 +1,46 @@
+source base.tcl
+
+set w .line
+set graph [bltLineGraph $w]
+return
+set marker [$graph marker create line tt \
+ -element data1 \
+ -coords "1 50 1.5 100 1 150" \
+ -linewidth 10]
+
+#bltTest2 $graph $marker -bindtags
+bltTest2 $graph $marker -cap round
+#bltTest2 $graph $marker -coords
+bltTest2 $graph $marker -dashes dashdot
+bltTest2 $graph $marker -dashes dashdot dashoffset 10
+bltTest2 $graph $marker -element data2
+#bltTest2 $graph $marker -fill
+bltTest2 $graph $marker -join round
+bltTest2 $graph $marker -linewidth 1
+bltTest2 $graph $marker -hide yes
+#bltTest2 $graph $marker -mapx
+#bltTest2 $graph $marker -mapy
+bltTest2 $graph $marker -outline green
+#bltTest2 $graph $marker -state
+#bltTest2 $graph $marker -under
+#bltTest2 $graph $marker -xoffset
+#bltTest2 $graph $marker -xor
+#bltTest2 $graph $marker -yoffset
+
+#bltCmd $graph marker axis
+#bltCmd $graph marker bind marker ?sequence command?
+#bltCmd $graph marker cget marker ?option?
+#bltCmd $graph marker configure marker ?option value?...
+#bltCmd $graph marker create type marker ?option value?...
+bltCmd $graph marker exists $marker
+#bltCmd $graph marker find "enclosed|overlapping x1 y1 x2 y2"
+#bltCmd $graph marker get name
+#bltCmd $graph marker lower "marker ?afterMarker?"
+#bltCmd $graph marker names "?pattern?..."
+#bltCmd $graph marker raise "marker ?beforeMarker?"
+bltCmd $graph marker type $marker
+bltCmd $graph marker delete $marker
+
+echo "done"
+#bltPlotDestroy $w
+