Lines Matching defs:ax
185 ax = fig.add_axes(rect, projection='radar')
186 ax.set_rgrids(labels)
187 ax.set_varlabels(titles)
188 ax.text(theta[2], 1, "Linear->Log", horizontalalignment='center', color='green', fontsize=18)
189 return {'ax':ax, 'theta':theta}
201 params['ax'].plot(params['theta'], tmp_log, color='b', label=filebase+"_"+kind+"_log")
202 params['ax'].plot(params['theta'], tmp_lin, color='r', label=filebase+"_"+kind+"_linear")
203 params['ax'].legend(loc='best', bbox_to_anchor=(1.4,1.2))
204 params['ax'].set_rlim((0, np.ceil(max(tmp_log))))
206 def multiAppBarChartSettings(ax, plt, index, width, n, tmp, s):
207 ax.set_yscale('log')
208 ax.legend()
209 ax.set_xticks(index + width * n / 2)
210 ax.set_xticklabels(tmp[s]['Total'].keys(), rotation=50, horizontalalignment='right')
283 fig, ax = plt.subplots()