我的问题可能有简单的答案,但不幸的是我无法继续找到解决方案,因为我有点新手。
我希望打印以下 Tikz 图形的颜色条的数字,并在每个数字后加上百分比符号。不幸的是,从下面的 MWE 可以看出,这不起作用。
有人能给我指出正确的方向吗?
\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.16}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
view={0}{90},
colormap/cool,
colorbar horizontal,
colorbar style={
at={(0,1.2)},anchor=north west,colorbar style ={yticklabel =
\pgfmathprintnumber\tick\%}}
]
\addplot3 [surf, shader=flat] {x+y};
\end{axis}
\end{tikzpicture}
\end{document}