How to remove x and y axis co-ordinate line from the below image

Summary

How to remove the x and y co-ordinate from the below attached image.

Code snippet:

ax.set_xlim([0, 10])
    ax.set_ylim([0, 10])
    ax.set_aspect('equal')
    st.pyplot(fig)

Have a look at this.

Thank you ferdy. It helped.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.