所以我尝试了fill=red
和color=red
,但是没有效果。为我的节点文本填充颜色,并为我的所有文本和节点箭头着色。我只需要为节点箭头着色,有什么建议吗?
我的节点代码:
(B) edge[bend left] node[sloped, anchor=center,text=green, above] {\tiny OK} (E)
提前致谢。
答案1
用作draw=green
路径选项。要为节点文本着色,请使用text=<color>
。
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}
\node(B){};
\node[right=of B](E){};
\path(B) edge[draw=green,bend left] node[sloped, anchor=center,above] {\tiny OK} (E);
\end{tikzpicture}
\end{document}