summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3d3ffdc)
raw | patch | inline | side by side (parent: 3d3ffdc)
author | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Sun, 1 May 2005 10:42:17 +0000 (10:42 +0000) | ||
committer | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Sun, 1 May 2005 10:42:17 +0000 (10:42 +0000) |
the graph is not ABOUT the title
git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2/program@462 a5681a0c-68f1-0310-ab6d-d61299d08faa
git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2/program@462 a5681a0c-68f1-0310-ab6d-d61299d08faa
src/rrd_graph.c | patch | blob | history |
diff --git a/src/rrd_graph.c b/src/rrd_graph.c
index 5efe82753acd4ac28e973b182e95e827b411b4b4..d7ff2b003b3e4e4546a82a043f122c6098fc6f6d 100644 (file)
--- a/src/rrd_graph.c
+++ b/src/rrd_graph.c
** +-+-------------------------------------------+
*/
int Xvertical=0, Yvertical=0,
- Xtitle =0, Ytitle =0,
+ Ytitle =0,
Xylabel =0,
Xmain =0, Ymain =0,
#ifdef WITH_PIECHART
** automatically has some vertical spacing. The horizontal
** spacing is added here, on each side.
*/
- Xtitle = gfx_get_text_width(im->canvas, 0,
+ /* don't care for the with of the title
+ Xtitle = gfx_get_text_width(im->canvas, 0,
im->text_prop[TEXT_PROP_TITLE].font,
im->text_prop[TEXT_PROP_TITLE].size,
im->tabwidth,
- im->title, 0) + 2*Xspacing;
+ im->title, 0) + 2*Xspacing; */
Ytitle = im->text_prop[TEXT_PROP_TITLE].size*2.5;
}
im->xorigin = Xspacing + Xylabel;
- if (Xtitle > im->ximg) im->ximg = Xtitle;
+ /* the length of the title should not influence with width of the graph
+ if (Xtitle > im->ximg) im->ximg = Xtitle; */
if (Xvertical) { /* unit description */
im->ximg += Xvertical;