Remove plotly tick labels

preview_player
Показать описание

Below, you can find the text related to the question/problem. In the video, the question will be presented first, followed by the answers. If the video moves too fast, feel free to pause and review the answers. If you need more detailed information, you can find the necessary sources and links at the bottom of this description. I hope this video has been helpful, and even if it doesn't directly solve your problem, it will guide you to the source of the solution. I'd appreciate it if you like the video and subscribe to my channel!Remove plotly tick labels

I wanted to make a plotly 3d graph with no tick labels but I failed to find a way to do so
import numpy as np

z = x_mesh**2 + y_mesh**2

fig = go.Figure(data=[go.Surface(x=x,y=y,z=z,colorscale='Sunsetdark_r')])

import numpy as np

z = x_mesh**2 + y_mesh**2

fig = go.Figure(data=[go.Surface(x=x,y=y,z=z,colorscale='Sunsetdark_r')])

Output image
Output image
I needed to remove the marked numbers.

Tags: python,plotlySource of the question:

Question and source license information:
Рекомендации по теме