Hello =)
I would like to add labels for each scatter in my code.
f = Figure(; size=(500, 400))
ax1 = Axis3(f[1, 2], aspect = (1, 1, 1.5),
xlabel = "x [m]",ylabel = "y [m]",zlabel = "z [m]",
title="t = $value days")
hm = lines!(ax1, coord_x, coord_y, coord_z, color =:black, colormap = :black, linewidth = 5, colorrange = (-50,300)) # , colorrange = (0,1200)
S1b = scatter!(ax1,x_axe1,y_axe1,h1)
S1m = scatter!(ax1,x_axe1,y_axe1,h2)
S1h = scatter!(ax1,x_axe1,y_axe1,h3)
S2b = scatter!(ax1,x_axe2,y_axe2,h1)
S2m = scatter!(ax1,x_axe2,y_axe2,h2)
S2h = scatter!(ax1,x_axe2,y_axe2,h3)
S3b = scatter!(ax1,x_axe3,y_axe3,h1)
S3m = scatter!(ax1,x_axe3,y_axe3,h2)
S3h = scatter!(ax1,x_axe3,y_axe3,h3)
f
I would like that the text sensor 1 appears next to S1b etc.
How can I do that ?
Best,