--- loncom/xml/lonplot.pm	2002/01/21 16:41:31	1.42
+++ loncom/xml/lonplot.pm	2002/01/23 11:10:14	1.44
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # Dynamic plot
 #
-# $Id: lonplot.pm,v 1.42 2002/01/21 16:41:31 matthew Exp $
+# $Id: lonplot.pm,v 1.44 2002/01/23 11:10:14 matthew Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -780,7 +780,7 @@ sub write_gnuplot_file {
     if (%key) {
 	$gnuplot_input .= 'set key '.$key{'pos'}.' ';
 	if ($key{'title'} ne '') {
-	    $gnuplot_input .= 'title "'.$key{'title'}.'" ';
+	    $gnuplot_input .= 'title " '.$key{'title'}.'" ';
 	} 
 	$gnuplot_input .= ($key{'box'} eq 'on' ? 'box ' : 'nobox ').$/;
     } else {
@@ -905,11 +905,11 @@ sub insert_plot {
     }
     $result .= ">\n";
     # Add the components
-    $result .= &insert_key();
-    $result .= &insert_axis();
-    $result .= &insert_title();    
-    $result .= &insert_xlabel();    
-    $result .= &insert_ylabel();    
+    # $result .= &insert_key();
+    # $result .= &insert_axis();
+    # $result .= &insert_title();    
+    # $result .= &insert_xlabel();    
+    # $result .= &insert_ylabel();    
     $result .= &insert_curve();
     # close up the <plot>
     $result .= "</plot>\n";