I am building a rotated tree using tikz-qtree. Whenever i use the setting "grow=left", the leaf nodes will be shifted a constant distance compared to their parent nodes, so that the lines between them aren't vertical. This does not seem dependent on the rotation.
Is there any way to avoid it? :)
My code is:
\documentclass[12pt, a4paper]{article}
\usepackage{tikz-qtree}
\begin{document}
\begin{figure}[ht]
\centering
\begin{tikzpicture}[grow=left, sibling distance=5pt,rotate=90,transform shape]
\tikzset{frontier/.style={distance from root=275pt}}
\Tree [
[tip1 ]
[
[tip2 ]
[
[
[tip3 ]
[
[
[tip4 ]
[
[tip5 ]
[tip6 ]
]
]
[
[
[tip7 ]
[tip8 ]
]
[
[
[tip9 ]
[tip10 ]
]
[
[tip11 ]
[tip12 ]
]
]
]
]
]
[
[tip13 ]
[
[tip14 ]
[
[
[tip15 ]
[tip16 ]
]
[
[
[tip17 ]
[tip18 ]
]
[
[tip19 ]
[tip20 ]
]
]
]
]
]
]
]
]
\end{tikzpicture}
\caption{Dendogram}
\label{fig:dendogram}
\end{figure}
\end{document}


