我在使用该选项时遇到问题colorbar as legend
:显示tick labels
不正确。查看 PGFplots 手册后,我注意到给出的示例也存在此问题。
有可能解决这个问题吗?
colormap
以下是使用手册中给出的一个简单示例:
\documentclass{standalone}
\usepackage{pgfplots}
\pgfplotsset{
compat=newest,
colormap={colorbarAsLegend}{
of colormap={
viridis,
target pos={0,200,300,350,375,400,700,800,850,1000},
sample for=const,
}
},
}
\begin{document}
\pgfplotscolorbardrawstandalone[
colormap name=colorbarAsLegend,
colormap access=const,
]
\pgfplotscolorbardrawstandalone[
colorbar as legend,
colormap name=colorbarAsLegend,
colormap access=const,
]
\begin{tikzpicture}
\begin{axis}[colorbar as legend,
colormap name=colorbarAsLegend,
colormap access=const,
]
\addplot [mesh, very thick] {x};
\end{axis}
\end{tikzpicture}
\end{document}