In the tikz-3dplot documentation (page 15) \tdplotsetmaincoords{a}{b} is suggested to rotate the system of coordinates. But it apparently realizes rotations only about the x and z axes.
How to realize a system of coordinates where x points up, z points right and y points almost "out of the page"? (A rotation about the y axis would be needed).
Despite trying several values of a and b, I didn't obtain this. My code so far (partially derived from this very useful answer):
\documentclass[border=2mm,tikz]{standalone}
\usepackage{tikz}
\usepackage{tikz-3dplot}
\begin{document}
\tdplotsetmaincoords{70}{70}
\begin{tikzpicture}[tdplot_main_coords,font=\sffamily]
\draw[-latex] (-7.5,0,0) -- (7.5,0,0) node[above right] {$x$};
\draw[-latex] (0,-7.5,0) -- (0,7.5,0) node[below] {$y$};
\draw[-latex] (0,0,-7.5) -- (0,0,7.5) node[above left] {$z$};
\draw[fill=gray,opacity=0.4] (0,-7.5,7.5) -- (0,7.5,7.5) -- (0,7.5,-7.5) -- (0,-7.5,-7.5) -- cycle;
\draw[fill=gray,opacity=0.2] (-7.5,0,-7.5) -- (-7.5,0,7.5) -- (7.5,0,7.5) -- (7.5,0,-7.5) -- cycle;
\end{tikzpicture}
\end{document}
The z axis should replace the current y axis, the x axis should replace the current z axis, and the y axis should replace the current x axis.
As an additional attempt, I tried \tdplotsetrotatedcoords{0}{40}{0} before the last two draws, but it had no effect at all.



Thank you for your solution. Re-labelling the axes was more quick, but you guessed right: it is not what I was needing.
– BowPark Apr 19 '18 at 23:01