三维表面的颜色和图例

三维表面的颜色和图例

我正在尝试使用绘制 3d 曲面pgfplots,这是我到目前为止所做的:

\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}

在此处输入图片描述

我需要单色(但不是),我无法添加图例,我想通过旋转来改变视角。有什么建议吗?谢谢。

答案1

  1. 您可以选择合适的colormap。例如,colormap/gray在加载颜色图之后pgfplotslibrary

  2. 您有view={<angle>}{<angle>}view/h=<angle>和其他一些影响视角的命令。请参阅包文档(第节4.11.1 查看配置)。

  3. \addlegendentry和之间似乎存在不兼容性patch type=triangle quadr。根据软件包作者的评论这似乎是一个错误;他还建议添加area legend,fill=black到情节中以获得合适的替代品。

代码:

\documentclass{article}
\usepackage{pgfplots}
\usepgfplotslibrary{patchplots,colormaps}
\pgfplotsset{compat=1.9} 
\begin{document}

\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},
view={10}{10},
]

\addplot3[
  patch,
  patch type=triangle quadr,
  opacity = 0.5,
  shader=faceted interp,
  colormap/gray,
  area legend,fill=black
  ]
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}

\end{document}

Acrobat Reader 上看到的输出(某些查看器(例如 Okular)可能会产生不正确的结果,用小矩形替换连续阴影)

在此处输入图片描述

相关内容