summaryrefslogtreecommitdiffstats
path: root/tests/base.tcl
diff options
context:
space:
mode:
authorjoye <joye>2014-02-27 21:57:37 (GMT)
committerjoye <joye>2014-02-27 21:57:37 (GMT)
commit0f1c642f49450db9f19e9eb52d256c680ab795c6 (patch)
tree7a5a054997a1e1329c65db772f6e8d822a74f0d8 /tests/base.tcl
parentc89110414f32df48dde2ebb3f87675e56bcad2ce (diff)
downloadblt-0f1c642f49450db9f19e9eb52d256c680ab795c6.zip
blt-0f1c642f49450db9f19e9eb52d256c680ab795c6.tar.gz
blt-0f1c642f49450db9f19e9eb52d256c680ab795c6.tar.bz2
*** empty log message ***
Diffstat (limited to 'tests/base.tcl')
-rw-r--r--tests/base.tcl7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/base.tcl b/tests/base.tcl
index d69e609..179850d 100644
--- a/tests/base.tcl
+++ b/tests/base.tcl
@@ -66,12 +66,11 @@ proc bltCmd {graph args} {
proc bltElements {graph} {
$graph element create data1 \
-xdata { 0.2 0.4 0.6 0.8 1.0 1.2 1.4 1.6 1.8 2.0 } \
- -ydata { 13 25 36 46 55 64 70 75 80 90}\
- -color blue
+ -ydata { 13 25 36 46 55 64 70 75 80 90}
$graph element create data2 \
-xdata { 0.2 0.4 0.6 0.8 1.0 1.2 1.4 1.6 1.8 2.0 } \
- -ydata { 26 50 72 92 110 128 140 150 160 180}\
- -yerror {10 10 10 10 10 10 10 10 10 10 10} \
+ -ydata { 26 50 72 92 110 128 140 150 160 180} \
+ -yerror {10 10 10 10 10 10 10 10 10 10 10} \
-color red
$graph legend configure -title "Legend"
}