I am trying to make a ternary plot, however the default axis is opposite of what I need to accomplish. Here is an example:
\documentclass{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.9}
\usepgfplotslibrary{ternary}
\pgfplotsset{width=9.5cm, height=9.5cm}
\begin{document}
\begin{tikzpicture}
\begin{ternaryaxis}[
ternary limits relative=false,
xlabel= x,
ylabel= y,
zlabel= z,
xmin=0,
xmax=100,
ymin=0,
ymax=100,
zmin=0,
zmax=100,
clip=false,
disabledatascaling,
label style={sloped}
]
\end{ternaryaxis}
\end{tikzpicture}
\end{document}
The outcome that I want would look something like this (apart from the text being reversed):

I don't know if this is even possible and the manual was no help.

