diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/crosshairs.tcl | 3 | ||||
-rw-r--r-- | tests/test.tcl | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/tests/crosshairs.tcl b/tests/crosshairs.tcl index 28c0a0d..95dc270 100644 --- a/tests/crosshairs.tcl +++ b/tests/crosshairs.tcl @@ -3,14 +3,13 @@ source base.tcl set w .line set graph [bltLineGraph $w] -$graph crosshairs configure -hide no +$graph crosshairs on $graph crosshairs configure -x 200 -y 200 echo "Testing Crosshairs..." bltTest2 $graph crosshairs -color green bltTest2 $graph crosshairs -dashes "8 3" -bltTest2 $graph crosshairs -hide yes bltTest2 $graph crosshairs -linewidth 3 bltTest2 $graph crosshairs -x 100 bltTest2 $graph crosshairs -y 100 diff --git a/tests/test.tcl b/tests/test.tcl index a32f812..b51a5f2 100644 --- a/tests/test.tcl +++ b/tests/test.tcl @@ -1,8 +1,8 @@ source base.tcl set w .line -#set graph [bltLineGraph $w] -set graph [bltBarGraph $w] +set graph [bltLineGraph $w] +#set graph [bltBarGraph $w] #echo "done" #bltPlotDestroy $w |