I'm trying to draw several rectangles next to each other, and the last rectangle on the queue without the right border.
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{arrows,shapes,positioning}
\begin{document}
\begin{tikzpicture}
\tikzstyle{t1} = [rectangle, fill=white, draw=black, minimum width=0.7cm, minimum height=0.9cm, inner sep=2pt]
\tikzstyle{t2} = [rectangle, fill=white, draw=black, minimum width=1.4cm, minimum height=0.9cm, inner sep=2pt]
\tikzstyle{arrow} = [->, >=stealth', auto, thick, draw=black]
\node[t1] (q1ax) {AX};
\node[t2] (q1bx) [right=-0.1mm of q1ax] {BX};
\node[t1] (q1cx) [right=-0.1mm of q1bx] {CX};
\node[t1] (q1dx) [right=-0.1mm of q1cx] {DX};
\node[t2] (q1ex) [right=-0.1mm of q1dx] {EX};
\node[t1] (q1dots) [right=-0.1mm of q1ex] {...};
\node[t1] (q2ax) [below right=2cm and 1cm of q1bx] {AX};
\node[t2] (q2bx) [right=-0.1mm of q2ax] {BX};
\node[t1] (q2cx) [right=-0.1mm of q2bx] {CX};
\node[t1] (q2dx) [right=-0.1mm of q2cx] {DX};
\node[t2] (q2ex) [right=-0.1mm of q2dx] {EX};
\node[t1] (q2dots) [right=-0.1mm of q2ex] {..};
\draw[arrow] (q1bx.south) -- (q2cx.north);
\draw[arrow] (q1dx.south) -- (q2ax.north);
\end{tikzpicture}
\end{document}
Please, how can I hide the border to get this result?


\draw[white,line width=.8pt] (q2dots.north east) -- (q2dots.south east);– d-cmst Jan 03 '17 at 12:13