I'm trying to plot a 3d surface using pgfplots and this is what I have done so far:
\usepgfplotslibrary{patchplots}
\begin{tikzpicture}
\begin{axis}[%
width=12cm,height=12cm,
xlabel={$J_1$},
ylabel={$J_2$},
zlabel={$J_3$},
legend style={at={(-0.2,0.14)},anchor=north west,draw=black,fill=white,legend cell align=left},
label style={font=\scriptsize}, ticklabel style={font=\scriptsize}
]
\addplot3[patch,patch type=triangle quadr,opacity = 0.2,
shader=faceted interp]
coordinates {
(349.9671, 349.9671, 195.8676)
(195.8676, 349.9671, 349.9671)
(349.9671, 195.8676, 349.9671)
(226.6197, 330.3199, 226.6197)
(226.6197, 226.6197, 330.3199)
(330.3199, 226.6197, 226.6197)};
% \addlegendentry{Pareto Front};
\end{axis}
\end{tikzpicture}

I need it in a single color (and it is not), I can't add a legend and I want to change the point of view rotating it. Any advice? Thanks.

patch type=triangle quadr. – juliohm Mar 19 '14 at 23:30\usepgfplotslibrary{patchplots}. – Gonzalo Medina Mar 19 '14 at 23:31