chiark / gitweb /
analyze: fix font size on plot
authorThomas Hindoe Paaboel Andersen <phomes@gmail.com>
Wed, 15 May 2013 19:52:07 +0000 (21:52 +0200)
committerThomas Hindoe Paaboel Andersen <phomes@gmail.com>
Sun, 2 Jun 2013 20:29:31 +0000 (22:29 +0200)
The font-size was missing a unit so they were ignored. This patch sets
the unit to 'px' and adjusts the sizes a bit as the text got very small.

src/analyze/systemd-analyze.c

index 6d97256c73977c4ab9e328b440f8c3f1ae8c9670..fe1abdc6bd7b95e26cedcb7f492f67863c34f50e 100644 (file)
@@ -512,10 +512,10 @@ static int analyze_plot(DBusConnection *bus) {
             "//    line.sec1  { }\n"
             "      line.sec5  { stroke-width: 2; }\n"
             "      line.sec01 { stroke: rgb(224,224,224); stroke-width: 1; }\n"
             "//    line.sec1  { }\n"
             "      line.sec5  { stroke-width: 2; }\n"
             "      line.sec01 { stroke: rgb(224,224,224); stroke-width: 1; }\n"
-            "      text       { font-family: Verdana, Helvetica; font-size: 10; }\n"
-            "      text.left  { font-family: Verdana, Helvetica; font-size: 10; text-anchor: start; }\n"
-            "      text.right { font-family: Verdana, Helvetica; font-size: 10; text-anchor: end; }\n"
-            "      text.sec   { font-size: 8; }\n"
+            "      text       { font-family: Verdana, Helvetica; font-size: 14px; }\n"
+            "      text.left  { font-family: Verdana, Helvetica; font-size: 14px; text-anchor: start; }\n"
+            "      text.right { font-family: Verdana, Helvetica; font-size: 14px; text-anchor: end; }\n"
+            "      text.sec   { font-size: 10px; }\n"
             "    ]]>\n   </style>\n</defs>\n\n");
 
         svg("<text x=\"20\" y=\"50\">%s</text>", pretty_times);
             "    ]]>\n   </style>\n</defs>\n\n");
 
         svg("<text x=\"20\" y=\"50\">%s</text>", pretty_times);