I'm trying to fit a text within the arrows but in a circular shape, however, the text doesn't bend nicely.
\documentclass[border=5mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{arrows}
\begin{document}
\begin{tikzpicture}[paths/.style={->, thick, >=stealth'}]
\node (species_1) at (-3,0.5) {};
\node (species_2) at (0,0)
{};
\node (species_3) at (2,-2)
{};
\node (species_4) at (0,-4)
{};
\node (species_5) at (-2,-2)
{};
\node (species_6) at (-3,-4)
{};
\draw[-triangle 90 cap, very thick,double, double distance=9pt] (species_2) to [bend left=40] node[black, sloped,bend left=40]{Develop} (species_3);
\draw[-triangle 90 cap, very thick,double, double distance=9pt] (species_3) to [bend left=40] node[black, sloped] {Design} (species_4);
\draw[-triangle 90 cap, very thick,double, double distance=9pt] (species_4) to [bend left=40] node[black, sloped] {Plan} (species_5);
\draw[-triangle 90 cap, very thick,double, double distance=9pt] (species_5) to [bend left=40] node[black, sloped] {Deploy} (species_2);
\draw[-triangle 90 cap, very thick,double, double distance=9pt] (species_6) to node[black, sloped] {Plan}(species_4);
\end{tikzpicture}
\end{document}
Update,
I managed to use the code in the link provided, now how can I use the same code to have the same drawing aligned vertically?
Code:
\documentclass[border=5pt]{standalone}
\usepackage{xcolor}
\definecolor{ocre}{HTML}{800000}
\definecolor{sky}{HTML}{C6D9F1}
\definecolor{skybox}{HTML}{5F86B3}
\usepackage{tikz}
\usepackage{pgfmath}
\usetikzlibrary{decorations.text, arrows.meta,calc,shadows.blur,shadings}
% arctext from Andrew code with modifications:
%Variables: 1: ID, 2:Style 3:box height 4: Radious 5:start-angl 6:end-angl 7:text {format along path}
\def\arctext[#1][#2]#3(#5)(#6)#7{
\draw[#2] (#5:#4cm+#3) coordinate (above #1) arc (#5:#6:#4cm+#3)
-- (#6:#4) coordinate (right #1) -- (#6:#4cm-#3) coordinate (below right #1) arc (#6:#5:#4cm-#3) coordinate (below #1)
-- (#5:#4) coordinate (left #1) -- cycle;
\def\a#1{#4cm+#3}
\def\b#1{#4cm-#3}
\path[
decoration={
raise = -0.5ex, % Controls relavite text height position.
text along path,
text = {#7},
text align = center,
},
decorate
]
(#5:#4) arc (#5:#6:#4);
}
%arcarrow, this is mine, for beerware purpose...
%Function: Draw an arrow from arctex coordinate specific nodes to another
%Arrow start at the start of arctext box and could be shifted to change the position
%to avoid go over another box.
%Var: 1:Start coordinate 2:End coordinate 3:angle to shift from acrtext box
\def\arcarrow(#1)(#2)[#3]{
\draw[thick,->,>=latex]
let \p1 = (#1), \p2 = (#2), % To access cartesian coordinates x, and y.
\n1 = {veclen(\x1,\y1)}, % Distance from the origin
\n2 = {veclen(\x2,\y2)}, % Distance from the origin
\n3 = {atan2(\y1,\x1)} % Angle where acrtext starts.
in (\n3-#3: \n1) -- (\n3-#3: \n2); % Draw the arrow.
}
\begin{document}
\begin{tikzpicture}[
% Environment Cfg
font=\sf \scriptsize,
% Styles
myarrow/.style={
thick,
-latex,
},
Center/.style ={
circle,
fill=ocre,
text=white,
align=center,
font =\footnotesize\bf,
inner sep=1pt,
},
RedArc/.style ={
color=black,
thick,
fill=ocre,
blur shadow, %Tikzedt not suport online view
},
SkyArc/.style ={
color=skybox,
thick,
fill=sky,
blur shadow, %Tikzedt not suport online view
},
]
% Drawing the center
\node[Center](SOSA) at (0,0) {Team 1\\ Blog};
\coordinate (SOSA-R) at (0:1.2); % To make compatible with \arcarrow macro.
% Drawing the Tex Arcs
% \Arctext[ID][box-style][box-height](radious)(start-angl)(end-angl){|text-styles| Text}
\arctext[SSN][SkyArc][8pt](1.5)(25)(-20){|\footnotesize\color{black}|Design};
\arctext[SCap][SkyArc][8pt](1.5)(75)(27){|\footnotesize\color{black}| Develop};
\arctext[SRel][SkyArc][8pt](1.5)(107)(77){|\footnotesize\color{black}| Test};
\arctext[SRel][SkyArc][8pt](1.5)(152)(109){|\footnotesize\color{black}|Deploy};
\arctext[SRel][SkyArc][8pt](1.5)(200)(154){|\footnotesize\color{black}|Review};
\draw[-stealth, ultra thick](-2,-1)to node[below, midway]{Sprint 1}++(4,0);
%Drawing the Arrows
%\arcarrow(above/below ID)(abobe/below ID)[shift]
% %Same level Arrows
% \draw[myarrow] (left SSNX) -- (right DUAM);
% \draw[myarrow] (left SSN) -- (left SRel);
% \draw[myarrow] (left SCap) -- (right SSN);
\end{tikzpicture}
\end{document}

