summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: fff2d86)
raw | patch | inline | side by side (parent: fff2d86)
author | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Sun, 15 May 2005 14:16:15 +0000 (14:16 +0000) | ||
committer | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Sun, 15 May 2005 14:16:15 +0000 (14:16 +0000) |
git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2/program@560 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 dbf418df772db677d142ebee1df2c20dc6738aaa..a3994910ce98e42538d00444edf8e3d731b6e701 100644 (file)
--- a/src/rrd_graph.c
+++ b/src/rrd_graph.c
node=gfx_new_area ( im->canvas,
0, 0,
- im->ximg, 0,
- im->ximg, im->yimg,
+ 0, im->yimg,
+ im->ximg, im->yimg,
im->graph_col[GRC_BACK]);
- gfx_add_point(node,0, im->yimg);
+ gfx_add_point(node,im->ximg, 0);
#ifdef WITH_PIECHART
if (piechart != 2) {
return (-1);
}
}
- gfx_render (im->canvas,im->ximg,im->yimg,0x0,fo);
+ gfx_render (im->canvas,im->ximg,im->yimg,0x00000000,fo);
if (strcmp(im->graphfile,"-") != 0)
fclose(fo);
return 0;