Is it possible to reverse an axis in a ternary diagram? The command x dir=reverse does not seem to work:
Here is a minimal working example: the result is the same with or without this option.
\documentclass{standalone}
\usepackage{pgfplots}
\usepgfplotslibrary{ternary}
\pgfplotsset{compat=newest}
\begin{document}
\begin{tikzpicture}
\begin{ternaryaxis}[%
x dir = reverse % -> no effect ?
]%
\addplot3 coordinates {
(0.85,0.15,0.00)
(0.82,0.13,0.05)
(0.73,0.14,0.13)
(0.82,0.06,0.13)
(0.84,0.00,0.16)
};
\end{ternaryaxis}
\end{tikzpicture}
\end{document}
