Hello ClearML community - I may have smth easy to confirm as a bug or get a simple resolve: executing the sample None on None renders the 3d plots but their labels are always named x,y,z, which means clearml ignores its own API., as the above code clearly says: xaxis="title x",
yaxis="title y",
zaxis="title z", Furthermore, using a plotly figure with report_plotly renders the same result with axis labels ignored, but also things like fig.update_layout(
# sliders=sliders,
title=title,
scene=dict(
xaxis_title=xlabel,
yaxis_title=ylabel,
zaxis_title=zlabel,
xaxis=dict(
autorange="reversed" # Reverse the x-axis direction
),
# camera_projection_type='orthographic'
), are completely ignored. I wanted to know if someone has seen this and resolved or filled a bug report already?