[Tex/LaTex] Label on arrows in smartdiagram

smartdiagram

I have a flow diagram made using smartdiagram . It produces the diagram as shown below:

enter image description here

I want to add some text labels to the arrows, to appear something like this:

enter image description here

How can this be achieved within smartdiagram or otherwise?

MWE is appended below:

\documentclass{article}
\usepackage{smartdiagram}
\usetikzlibrary{arrows}
\usesmartdiagramlibrary{additions}
\begin{document}
\smartdiagram[flow diagram]{D, IP, V}
\end{document}

Best Answer

I think smartdiagram only makes sense if you stick to the implemented designs; smartdiagram doesn't seem to support arrow labels.

I suggest to use "plain" tikz (which isn't so plain anyway), as it is more flexible.

enter image description here

\documentclass[border=2mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{shadows,positioning}
\colorlet{colD}{red!40}
\colorlet{colIP}{cyan!40}
\colorlet{colV}{blue!40}
\colorlet{colBorder}{gray!70}
\tikzset
  {mybox/.style=
    {rectangle,rounded corners,drop shadow,minimum height=1cm,
     minimum width=2cm,align=center,fill=#1,draw=colBorder,line width=1pt
    },
   myarrow/.style=
    {draw=#1,line width=3pt,-stealth,rounded corners
    },
   mylabel/.style={text=#1}
  }
\begin{document}
\begin{tikzpicture}
  \node[mybox=colD] (D) {D};
  \node[mybox=colIP,below=of D] (IP) {IP};
  \node[mybox=colV,below=of IP] (V) {V};
  \draw[myarrow=colIP] (D) -- (IP);
  \draw[myarrow=colV] (IP) -- (V);
  \draw[myarrow=colD] (V.east) -- +(0.7,0) coordinate (VD1)
    -- (VD1|-D) coordinate (VD2) -- (D);
  \path (D) -- node[mylabel=colIP,left]{Process 1} (IP);
  \path (IP) -- node[mylabel=colV,left]{Process 2} (V);
  \path (VD1) -- node[mylabel=colD,right]{Process 3} (VD2);
\end{tikzpicture}
\end{document}
Related Question