ipyvolume icon indicating copy to clipboard operation
ipyvolume copied to clipboard

How to remove the scale values in the x, y, and z directions?

Open MengM93 opened this issue 4 years ago • 1 comments

Hi,

I recently used Ipyvolume for plotting 3D array. The question is how to remove the scale values in the x, y, and z directions? Thank you. pastedImage The code I used is as follows V=np.load('E:/XX/XX/XX/m.npy') ipv.quickvolshow(V, level=[0.25, 0.75], opacity=0.03, level_width=0.1, data_min=None, data_max=None, stereo=False,extent=None)

Regards, Mason

MengM93 avatar Jun 23 '20 15:06 MengM93

How about

    fig.xlabel = ''
    fig.ylabel = ''
    fig.zlabel = ''
    ipv.style.axes_off()
    ipv.style.box_off()

kingjr avatar Aug 06 '20 07:08 kingjr