PGFplots - “颜色条作为图例”选项的问题

PGFplots - “颜色条作为图例”选项的问题

我在使用该选项时遇到问题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}

相关内容