I’m trying to shift some data in a Makie plot (I’m using a meshscatter, but have a simpler example).
If
fig = Figure()
Axis(fig[1,1],
xticks = 0:10:60,
xtickformat = x -> string.(x .+70),
yticks = 0:10:60,
ytickformat = x -> string.(x .+70),
limits = (0,60,0,60)
)
fig
I get the formats with a “.0” on the end of each label, but do not want them.
It appears that from the documentation, it runs through a command to automatically add the “.0”.