blob: c5d21f1f26b732aaea24bfb9f1d895648e7f1994 (
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
|
source base.tcl
set w .line
set graph [bltLineGraph $w]
$graph xaxis configure -title "X Axis" -limitsformat "%g"
#bltCmd $graph axis activate
#bltCmd $graph axis bind
#bltCmd $graph axis cget
#bltCmd $graph axis configure
#bltCmd $graph axis create
#bltCmd $graph axis deactivate
#bltCmd $graph axis delete
#bltCmd $graph axis focus
#bltCmd $graph axis get
#bltCmd $graph axis invtransform
#bltCmd $graph axis limits
#bltCmd $graph axis margin
#bltCmd $graph axis names
#bltCmd $graph axis transform
#bltCmd $graph axis type
#bltCmd $graph axis view
echo "done"
bltPlotDestroy $w
|