summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7a6beaf)
raw | patch | inline | side by side (parent: 7a6beaf)
author | Florian Forster <ff@octo.it> | |
Tue, 15 Jun 2010 14:25:33 +0000 (16:25 +0200) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Tue, 15 Jun 2010 14:25:33 +0000 (16:25 +0200) |
graph_def.c | patch | blob | history |
diff --git a/graph_def.c b/graph_def.c
index b8e0ce4e5402e9f76cf67ca879b15ef568418230..4ea09661373f01224ba38ec24a61ead348201e77 100644 (file)
--- a/graph_def.c
+++ b/graph_def.c
(def->legend != NULL) ? def->legend : def->ds_name,
def->stack ? ":STACK" : "");
array_append_format (args, "GPRINT:vdef_%04i_min:%s min,",
- index, (def->format != NULL) ? def->format : "%lg");
+ index, (def->format != NULL) ? def->format : "%6.2lf");
array_append_format (args, "GPRINT:vdef_%04i_avg:%s avg,",
- index, (def->format != NULL) ? def->format : "%lg");
+ index, (def->format != NULL) ? def->format : "%6.2lf");
array_append_format (args, "GPRINT:vdef_%04i_max:%s max,",
- index, (def->format != NULL) ? def->format : "%lg");
+ index, (def->format != NULL) ? def->format : "%6.2lf");
array_append_format (args, "GPRINT:vdef_%04i_lst:%s last\\l",
- index, (def->format != NULL) ? def->format : "%lg");
+ index, (def->format != NULL) ? def->format : "%6.2lf");
free (file);