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
master
vfilippov 2010-06-24 16:01:37 +00:00
parent 0926fe3298
commit 573e49ba51
1 changed files with 2 additions and 5 deletions

View File

@ -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;