是否可以将一条线从起始颜色混合到终止颜色,例如从红色混合到蓝色?
答案1
\documentclass[tikz,border=3.14mm]{standalone}
\usetikzlibrary{shapes.arrows}
\begin{document}
\begin{tikzpicture}
\node [single arrow,left color=red,right color=blue,
single arrow head extend=3pt,transform shape,minimum height=2cm,anchor=west]
at (0,0){};
\shade[left color=red,right color=blue] (0,-1) rectangle ++(2,0.25);
\end{tikzpicture}
\end{document}
pgfplots 可以通过以下方式添加这些颜色过渡point meta
,例如这个答案。