Hello,
does anyone knows a quick way to modified the ticks in 3D plot?
the following options don’t seem to work.
axis = ax.scene[OldAxis]
axis[:xticks] = (-1:1:1, ["start", "middle", "end"])
axis[:ticks][:ranges_labels] = ...
Hello,
does anyone knows a quick way to modified the ticks in 3D plot?
the following options don’t seem to work.
axis = ax.scene[OldAxis]
axis[:xticks] = (-1:1:1, ["start", "middle", "end"])
axis[:ticks][:ranges_labels] = ...
http://makie.juliaplots.org/stable/generated/axis.html
This page describes the old integrated axes
yes… I was going trough the documentation and doing
xticks!(ax.scene; xtickrange = -1:1:1, xticklabels=["uno", "dos", "tes", "cua"])
works for me. Thanks!