After setting the name to be used in graphs the boxplot shows the name of
the series.
<hansl>
clear
open nls_panel.gdt
#no description , no graph-name
boxplot lwage --output="display"
gnuplot lwage --time-series --with-lines --output="display"
#setting the graph-name
setinfo lwage --graph-name="lwage name to display"
#the name of the series is displayed correctly as per graph-name
gnuplot lwage --time-series --with-lines --output="display"
##the name of the series is displayed incorrectly as series name
boxplot lwage --output="display"
Mihai