We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1f7d675 + cf43afb commit 272d16dCopy full SHA for 272d16d
1 file changed
intermine/bar_chart.py
@@ -236,11 +236,11 @@ def query_to_barchart_log(xml, resp):
236
237
ax = y.plot(kind='bar')
238
ax.set_title(list[0][0])
239
- ax.set_xlabel(l[1])
+ ax.set_xlabel(store[1])
240
if resp == 'true':
241
- ax.set_ylabel('log(' + l[2] + ')')
+ ax.set_ylabel('log(' + store[2] + ')')
242
else:
243
- ax.set_ylabel(l[2])
+ ax.set_ylabel(store[2])
244
ax.set_xticklabels(x, rotation='vertical')
245
246
rects = ax.patches
0 commit comments