;+
; Procedure: space_bar
;
; Purpose: generates a horizontal bar stored in a tplot variable
; that is used to adjust the spacing between tplot variables
; in plots
;
; Arguments:
; n(positional,required): a double representing the height
; of the space bar
;
; newname(keyword,optional): the name you want the bar to
; have(default: 'space_bar')
;
;
;
; $LastChangedBy: pcruce $
; $LastChangedDate: 2008-01-17 14:37:52 -0800 (Thu, 17 Jan 2008) $
; $LastChangedRevision: 2286 $
; $URL: svn+ssh://thmsvn@ambrosia.ssl.berkeley.edu/repos/ssl_general/trunk/tplot/tplotxy.pro $
;-
pro space_bar,n,newname = newname
if not keyword_set(newname) then newname = 'space_bar'
store_data,newname,data={x:[0,1],y:[!values.F_NaN,!values.F_NaN]}
options,newname,panel_size=n
options,newname,color=255
end