118
134
# Set the vertical stripes
119
135
chart.fill_linear_stripes(Chart.CHART, 0, 'CCCCCC', 0.2, 'FFFFFF', 0.2)
122
138
chart.set_grid(0, 25, 5, 5)
124
140
# The Y axis labels contains 0 to 100 skipping every 25, but remove the
125
141
# first number because it's obvious and gets in the way of the first X
127
143
left_axis = range(0, max_y + 1, 25)
129
145
chart.set_axis_labels(Axis.LEFT, left_axis)