Results 6 comments of Ken Keong LEE

Hi, I had similar issue with the label, I'm using spyder(anaconda) for mac on python 3.4

matpotlib-1.5 ipython-4.0.1 spyder-2.3.7 by adding _redraw_labels, i manage to get the labels for the 3 axis. not sure if this is intended ``` d.set_title(r"source flavour composition $\nu_e,\nu_\mu,\nu_\tau$",fontsize=20) d.left_axis_label(r"$|\nu_e|$",fontsize=15) d.right_axis_label(r"$|\nu_\mu|$",fontsize=15) d.bottom_axis_label(r"$|\nu_\tau|$",fontsize=15)...

![figure_2](https://cloud.githubusercontent.com/assets/7994797/11460141/047fa434-96df-11e5-8954-fa26b922ed1a.png) ``` figure, d=t.figure(scale=1) d.boundary(linewidth=2.0) d.gridlines(multiple=0.1,color="blue",linewidth=0.8) d.gridlines(multiple=0.02,color="green",linewidth=0.4) d.set_title(r"source flavour composition $\nu_e,\nu_\mu,\nu_\tau$",fontsize=20) d.left_axis_label(r"$|\nu_e|$",fontsize=15) d.right_axis_label(r"$|\nu_\mu|$",fontsize=15) d.bottom_axis_label(r"$|\nu_\tau|$",fontsize=15) #d._redraw_labels() d.ticks(axis='rlb',multiple=0.1,axes_colors={'l': 'g', 'r':'b', 'b': 'r'},clockwise=False,label=ticks) p.axis('off') point=[(1/3,1/3,1/3)] d.scatter(point, marker='D', color='green', label="Green Diamonds",) d.resize_drawing_canvas(scale=1.05) d.legend d.show()...

my ipython console renders the image in a separate interactive window, I could do it inline but would prefer a separate window to check on the plots. I have try...

something similar to issue#31 I am trying to produce something similar to this https://inspirehep.net/record/1343979/files/flav_scan-eps-converted-to.png but I can't seem to get for example the bottom axis to go 0 to 1...

I have tried with the latest master branch and it does not show the axis label without _redraw_labels()