Commit 8cd838d6 authored by gerv%gerv.net's avatar gerv%gerv.net

Bug 178043 - Make it possible to have vertical x-axis labels. Patch by gerv; r=joel.

parent 505f37c5
...@@ -132,7 +132,7 @@ sub PrefillForm { ...@@ -132,7 +132,7 @@ sub PrefillForm {
"status_whiteboard_type", "bug_id", "status_whiteboard_type", "bug_id",
"bugidtype", "keywords", "keywords_type", "bugidtype", "keywords", "keywords_type",
"x_axis_field", "y_axis_field", "z_axis_field", "x_axis_field", "y_axis_field", "z_axis_field",
"chart_format", "cumulate") "chart_format", "cumulate", "x_labels_vertical")
{ {
# This is a bit of a hack. The default, empty list has # This is a bit of a hack. The default, empty list has
# three entries to accommodate the needs of the email fields - # three entries to accommodate the needs of the email fields -
......
...@@ -230,6 +230,7 @@ elsif ($action eq "plot") { ...@@ -230,6 +230,7 @@ elsif ($action eq "plot") {
# If action is "plot", we will be using a format as normal (pie, bar etc.) # If action is "plot", we will be using a format as normal (pie, bar etc.)
# and a ctype as normal (currently only png.) # and a ctype as normal (currently only png.)
$vars->{'cumulate'} = $cgi->param('cumulate') ? 1 : 0; $vars->{'cumulate'} = $cgi->param('cumulate') ? 1 : 0;
$vars->{'x_labels_vertical'} = $cgi->param('x_labels_vertical') ? 1 : 0;
$vars->{'data'} = \@image_data; $vars->{'data'} = \@image_data;
} }
else { else {
......
...@@ -33,6 +33,7 @@ ...@@ -33,6 +33,7 @@
y_tick_number => 8, y_tick_number => 8,
y_number_format => "%d", y_number_format => "%d",
x_label_position => 0.5, x_label_position => 0.5,
x_labels_vertical => x_labels_vertical,
bar_spacing => 8, bar_spacing => 8,
shadow_depth => 4, shadow_depth => 4,
shadowclr => 'dred', shadowclr => 'dred',
......
...@@ -37,6 +37,7 @@ ...@@ -37,6 +37,7 @@
y_label => y_label, y_label => y_label,
y_tick_number => 8, y_tick_number => 8,
x_label_position => 0.5, x_label_position => 0.5,
x_labels_vertical => x_labels_vertical,
legend_placement => "RT", legend_placement => "RT",
line_width => 2); line_width => 2);
......
...@@ -87,9 +87,13 @@ ...@@ -87,9 +87,13 @@
<tr> <tr>
<td> <td>
</td> </td>
<td align="center"> <td align="left">
<b>Horizontal Axis:</b> <b>Horizontal Axis:</b>
[% PROCESS select name = 'x_axis_field' %] [% PROCESS select name = 'x_axis_field' %]<br>
<label for="x_labels_vertical"><b>Vertical labels:</b></label>
<input type="checkbox" name="x_labels_vertical" id="x_labels_vertical"
value="1"
[% " checked" IF default.x_labels_vertical.0 == "1" %]>
</td> </td>
<td> <td>
</td> </td>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment