可视化的解决方法取决于 ybar 堆叠

可视化的解决方法取决于 ybar 堆叠

有没有什么解决办法漏洞

“可视化取决于”功能导致堆叠图出现错误。

使用“ybar stacked”,最小示例会生成错误消息

! 未定义控制序列。\pgfplots@current@point@meta ->{0Y0.0e0]},\test

我需要堆叠条形图上的数字。这些数字必须从另一列计算得出。

梅威瑟:

\documentclass{standalone}
\usepackage{pgfplots}

\begin{document}
\begin{tikzpicture}
\begin{axis}[
ybar stacked, %this doesn't work
% ybar, % this works
% stack plots=y, % this doesn't work
visualization depends on=0.5*y \as \test
]

\addplot [nodes near coords=\test] table {
0 0
1 10
2 8
};
\end{axis}
\end{tikzpicture}

\end{document}

相关内容