\documentclass[ tikz,
border=3mm]{standalone}
\usetikzlibrary{chains}
\begin{document}
\begin{tikzpicture}[
node distance = 0mm,
start chain = A going right,
bar/.style args = {#1/#2}{draw, %
fill=#1, minimum width=#2,
minimum height=1em, outer sep=0mm,
node contents={}, on chain}
]
\node[bar=blue!30/13mm];
\node[bar=red!30/21mm];
\node[bar=blue!30/13mm];
\node[bar=red!30/21mm];
\draw[->] ([xshift=-3mm]A-1.south west) -- ([xshift=7mm]A-4.south east);
\draw[->] ([yshift=-3mm]A-1.south west) -- ([yshift=7mm]A-1.north west);
\path (A-1.south east) node[below] {$T$}
(A-2.south east) node[below] {$T{+}L$}
(A-3.south east) node[below] {$2T{+}L$}
(A-4.south east) node[below] {$2T{+}2L$};
\end{tikzpicture}%
\end{document}