summaryrefslogtreecommitdiffstats
path: root/template/en/default/reports/report-pie.png.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'template/en/default/reports/report-pie.png.tmpl')
-rw-r--r--template/en/default/reports/report-pie.png.tmpl7
1 files changed, 4 insertions, 3 deletions
diff --git a/template/en/default/reports/report-pie.png.tmpl b/template/en/default/reports/report-pie.png.tmpl
index f34397e12..76a717779 100644
--- a/template/en/default/reports/report-pie.png.tmpl
+++ b/template/en/default/reports/report-pie.png.tmpl
@@ -26,9 +26,10 @@
[% FILTER null;
USE graph = GD.Graph.pie(width, height);
- graph.set(title => col_field_disp,
- pie_height => 20,
- start_angle => 180);
+ graph.set(title => col_field_disp,
+ pie_height => 20,
+ suppress_angle => 2,
+ start_angle => 180);
graph.plot(data.0).png | stdout(1);
END;