Dear KS Chan, > When we use plot to plot a 3D system, is it possible to remove, the x, y, z > axes in the final figure? In 2D, no x, y axes is shown. It is nice to have > this flexibility.
This can be done by using regular matplotlib tools, for example like this: fig = kwant.plot(syst, ..., show=False) fig.axes[0].set_axis_off() pyplot.show()
