我有这张图表,其中轴“n”在 0 到 200 之间变化。但是,由于“A/h”轴从 0 开始,乍一看“n”在 0 到 2000 之间变化。
我怎样才能删除“A/h”轴上的 0?
此外,是否有可能使“P”轴上的 0 与“n”轴上的 0 相匹配并且不会有一点点悬停?
最后,我不想在图表中使用颜色,是否可以在颜色条和图表中使用灰度?
提前致谢。
(我在我的文档中使用了 siunitx 包)
\begin{figure}
\centering
\begin{tikzpicture}
\begin{axis}[colorbar, xlabel={n},ylabel={A\textsubscript{l}/h\textsubscript{l} [\si{\milli\metre}]},zlabel={P [\si{\watt}]}]
\addplot3
[surf,
shader=interp,
samples=10,
domain=0:200,y domain=0:0.0001]
{30.03530*x*y};
\end{axis}
\end{tikzpicture}
\caption{Caption}
\label{fig:my_label}
\end{figure}