From 573e49ba51b3923aa407bff65f5e363e5e1058ae Mon Sep 17 00:00:00 2001 From: vfilippov Date: Thu, 24 Jun 2010 16:01:37 +0000 Subject: [PATCH] Bug 65579 - Fix fonts in pie charts git-svn-id: svn://svn.office.custis.ru/3rdparty/bugzilla.org/trunk@807 6955db30-a419-402b-8a0d-67ecbb4d7f56 --- template/en/default/reports/report-pie.png.tmpl | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/template/en/default/reports/report-pie.png.tmpl b/template/en/default/reports/report-pie.png.tmpl index 682fba8bf..fcf7a2488 100644 --- a/template/en/default/reports/report-pie.png.tmpl +++ b/template/en/default/reports/report-pie.png.tmpl @@ -36,11 +36,8 @@ graph.set_legend_font(Param('graph_font'), Param('graph_font_size')); graph.set_title_font(Param('graph_font'), Param('graph_font_size')); - graph.set_x_label_font(Param('graph_font'), Param('graph_font_size')); - graph.set_y_label_font(Param('graph_font'), Param('graph_font_size')); - graph.set_x_axis_font(Param('graph_font'), Param('graph_font_size')); - graph.set_y_axis_font(Param('graph_font'), Param('graph_font_size')); - graph.set_values_font(Param('graph_font'), Param('graph_font_size')); + graph.set_label_font(Param('graph_font'), Param('graph_font_size')); + graph.set_value_font(Param('graph_font'), Param('graph_font_size')); graph.plot(data.0).png | stdout(1); END;