将箭头/线条从一种颜色混合到另一种颜色

将箭头/线条从一种颜色混合到另一种颜色

是否可以将一条线从起始颜色混合到终止颜色,例如从红色混合到蓝色?

答案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,例如这个答案

在此处输入图片描述

相关内容