From c6a20575a368d363f52394ecb12aa00440521fd6 Mon Sep 17 00:00:00 2001 From: oetiker Date: Wed, 13 Apr 2005 22:00:20 +0000 Subject: [PATCH] * draw the axis last to have them always on top * use a smaller font for labeling the axis git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2@406 a5681a0c-68f1-0310-ab6d-d61299d08faa --- program/src/rrd_graph.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/program/src/rrd_graph.c b/program/src/rrd_graph.c index 2fd703eb..97ede521 100644 --- a/program/src/rrd_graph.c +++ b/program/src/rrd_graph.c @@ -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;igdes_c;i++){ -- 2.30.2