summaryrefslogtreecommitdiffstats
path: root/ds9/library/plotprocess.tcl
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2019-05-22 18:38:42 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2019-05-22 18:38:42 (GMT)
commit10301c756dc2a687ab0529e6031f51ec1d2669a9 (patch)
tree65c91a36b19bcc6178b28e9c8b57ed104129dc70 /ds9/library/plotprocess.tcl
parent4dd728c5e78042657c7bb8f0bd4e3fb2433fefa2 (diff)
downloadblt-10301c756dc2a687ab0529e6031f51ec1d2669a9.zip
blt-10301c756dc2a687ab0529e6031f51ec1d2669a9.tar.gz
blt-10301c756dc2a687ab0529e6031f51ec1d2669a9.tar.bz2
add strip plot
Diffstat (limited to 'ds9/library/plotprocess.tcl')
-rw-r--r--ds9/library/plotprocess.tcl11
1 files changed, 8 insertions, 3 deletions
diff --git a/ds9/library/plotprocess.tcl b/ds9/library/plotprocess.tcl
index f21ccc3..a1490a2 100644
--- a/ds9/library/plotprocess.tcl
+++ b/ds9/library/plotprocess.tcl
@@ -53,8 +53,8 @@ proc PrefsDialogPlot {} {
grid $f.ttextlab $f.textlab -padx 2 -pady 2 -sticky w
grid $f.tnumlab $f.numlab -padx 2 -pady 2 -sticky w
- # Dataset
- set f [ttk::labelframe $w.plot.dataset -text [msgcat::mc {Dataset}]]
+ # Data
+ set f [ttk::labelframe $w.plot.data -text [msgcat::mc {Data Set}]]
# Show
ttk::checkbutton $f.show -text [msgcat::mc {Show}] -variable pap(show)
@@ -102,7 +102,7 @@ proc PrefsDialogPlot {} {
grid $f.errortitle $f.error $f.errorcap $f.errorcolor $f.errorwidth \
-padx 2 -pady 2 -sticky w
- pack $w.plot.graph $w.plot.grid $w.plot.axis $w.plot.dataset \
+ pack $w.plot.graph $w.plot.grid $w.plot.axis $w.plot.data \
-side top -fill both -expand true
}
@@ -190,6 +190,11 @@ proc PlotCmdScatter {title xaxis yaxis dim} {
PlotScatter $parse(tt) {} $title $xaxis $yaxis $dim $parse(buf)
}
+proc PlotCmdStrip {title xaxis yaxis dim} {
+ global parse
+ PlotStrip $parse(tt) {} $title $xaxis $yaxis $dim $parse(buf)
+}
+
proc PlotCmdAnalysisPlotStdin {which} {
global parse
AnalysisPlotStdin $which $parse(tt) {} $parse(buf)