blob: 863285afb11c85031b5cb674cb4867848432039a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
set sleep 1000
proc bltPlot {w title} {
toplevel $w
wm title $w $title
wm protocol $w WM_DELETE_WINDOW [list bltPlotDestroy $w]
set mb ${w}mb
menu $mb
$w configure -menu $mb
}
proc bltPlotDestroy {w} {
destroy ${w}mb
destroy $w
}
proc bltTest {graph option value} {
global sleep
echo " $option $value"
set org [$graph cget $option]
$graph configure $option $value
update
after $sleep
$graph configure $option $org
update
after $sleep
}
proc bltTest2 {graph which option value} {
global sleep
echo " $option $value"
set org [$graph $which cget $option]
$graph $which configure $option $value
update
after $sleep
$graph $which configure $option $org
update
after $sleep
}
proc bltBarGraph {w} {
global sleep
set title "Bar Graph"
bltPlot $w $title
set graph [blt::barchart ${w}.gr \
-width 600 \
-height 500 \
-title $title \
-barwidth .2 \
-barmode aligned \
]
pack $graph -expand yes -fill both
$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
$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}\
-color red
$graph legend configure -title "Legend"
update
after $sleep
return $graph
}
proc bltLineGraph {w} {
global sleep
set title "Line Graph"
bltPlot $w $title
set graph [blt::graph ${w}.gr \
-width 600 \
-height 500 \
-title $title \
]
pack $graph -expand yes -fill both
$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 \
-symbol {}
$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} \
-color red \
-symbol {}
$graph legend configure -title "Legend"
update
after $sleep
return $graph
}
|