Index: trunk/fundraiser-statistics/fundraiser-scripts/fundraiser_reporting.py |
— | — | @@ -262,6 +262,7 @@ |
263 | 263 | for i in range(num_keys): |
264 | 264 | pylab.plot(x, y_lists[i], line_types[i]) |
265 | 265 | |
| 266 | + pylab.grid() |
266 | 267 | pylab.xlim(ranges[0], ranges[1]) |
267 | 268 | pylab.legend(labels,loc=2) |
268 | 269 | |
— | — | @@ -469,6 +470,7 @@ |
470 | 471 | pylab.plot(times[key], counts[key], line_types[count]) |
471 | 472 | count = count + 1 |
472 | 473 | |
| 474 | + pylab.grid() |
473 | 475 | pylab.xlim(ranges[0], ranges[1]) |
474 | 476 | pylab.legend(count_keys,loc=2) |
475 | 477 | |