diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2019-03-06 18:16:26 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2019-03-06 18:16:26 (GMT) |
commit | 879d80b47fdfa7d5f3d54c765b2e28877dabb939 (patch) | |
tree | 5ac5b4111b2eb26a3125f4556a8fbcc49e77c203 /ds9/library | |
parent | a61116da282f1a48e0cf1151155e868b00bd41f4 (diff) | |
download | blt-879d80b47fdfa7d5f3d54c765b2e28877dabb939.zip blt-879d80b47fdfa7d5f3d54c765b2e28877dabb939.tar.gz blt-879d80b47fdfa7d5f3d54c765b2e28877dabb939.tar.bz2 |
PLOT: use ds9(bg) for background color
Diffstat (limited to 'ds9/library')
-rw-r--r-- | ds9/library/plotbar.tcl | 2 | ||||
-rw-r--r-- | ds9/library/plotline.tcl | 2 | ||||
-rw-r--r-- | ds9/library/plotscatter.tcl | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/ds9/library/plotbar.tcl b/ds9/library/plotbar.tcl index 3a1a75c..3779aa6 100644 --- a/ds9/library/plotbar.tcl +++ b/ds9/library/plotbar.tcl @@ -145,6 +145,8 @@ proc PlotDialogBar {varname} { -width 600 \ -height 500 \ -highlightthickness 0 \ + -bg $ds9(bg) \ + -plotbackground $ds9(bg) \ ] $var(graph) xaxis configure -grid no -stepsize 0 diff --git a/ds9/library/plotline.tcl b/ds9/library/plotline.tcl index 7ad08cc..eae53f3 100644 --- a/ds9/library/plotline.tcl +++ b/ds9/library/plotline.tcl @@ -225,6 +225,8 @@ proc PlotDialogLine {varname} { -width 600 \ -height 500 \ -highlightthickness 0 \ + -bg $ds9(bg) \ + -plotbackground $ds9(bg) \ ] pack $var(graph) -expand yes -fill both diff --git a/ds9/library/plotscatter.tcl b/ds9/library/plotscatter.tcl index a9b7fc5..18f7944 100644 --- a/ds9/library/plotscatter.tcl +++ b/ds9/library/plotscatter.tcl @@ -152,6 +152,8 @@ proc PlotDialogScatter {varname} { -width 600 \ -height 500 \ -highlightthickness 0 \ + -bg $ds9(bg) \ + -plotbackground $ds9(bg) \ ] pack $var(graph) -expand yes -fill both |