obfuscate email addresses
[rrdtool.git] / src / rrd_graph.c
index 2fd703e..910f9db 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- * RRDtool 1.2rc8  Copyright by Tobi Oetiker, 1997-2005
+ * RRDtool 1.2.0  Copyright by Tobi Oetiker, 1997-2005
  ****************************************************************************
  * rrd__graph.c  produce graphs from data in rrdfiles
  ****************************************************************************/
@@ -36,7 +36,7 @@
 text_prop_t text_prop[] = {   
      { 8.0, RRD_DEFAULT_FONT }, /* default */
      { 9.0, RRD_DEFAULT_FONT }, /* title */
-     { 8.0,  RRD_DEFAULT_FONT }, /* axis */
+     { 7.0,  RRD_DEFAULT_FONT }, /* axis */
      { 8.0, RRD_DEFAULT_FONT }, /* unit */
      { 8.0, RRD_DEFAULT_FONT }  /* legend */
 };
@@ -2540,12 +2540,14 @@ graph_paint(image_desc_t *im, char ***calcpr)
   }
 #endif
 
-  if( !(im->extra_flags & ONLY_GRAPH) )  
-      axis_paint(im);
 
   /* grid_paint also does the text */
   if( !(im->extra_flags & ONLY_GRAPH) )  
     grid_paint(im);
+
+  
+  if( !(im->extra_flags & ONLY_GRAPH) )  
+      axis_paint(im);
   
   /* the RULES are the last thing to paint ... */
   for(i=0;i<im->gdes_c;i++){