This question is similar to this one I asked before: How to apply 3D transform to arrows in TikZ.
But there I was using the 3d library in TikZ. This question is about tikz-3dplot.
How can I rotate the arrowheads? Consider this minimal example:
Take the z-axis arrowhead as an example. I would like to be able to transform it so it lies in x-z plane or y-z plane. Is this possible?
MWE
\documentclass{standalone}
\usepackage{tikz}
\usepackage{tikz-3dplot}
\begin{document}
\tdplotsetmaincoords{60}{120}
\begin{tikzpicture}[tdplot_main_coords]
\coordinate (O) at (0,0,0);
\draw[thick,->] (0,0,0) -- (1,0,0) node[anchor=north east]{$x$};
\draw[thick,->] (0,0,0) -- (0,1,0) node[anchor=north west]{$y$};
\draw[thick,->] (0,0,0) -- (0,0,1) node[anchor=south]{$z$};
\end{tikzpicture}
\end{document}

