Hallo,

wie teile ich einem Tikzpicture mit, dass alle nodes den "anchor=north west" haben sollen?

meine Recherche im Netz war bisher erfolglos.

Danke für hilfe.

Code:
\documentclass{article}
\usepackage[T1]{fontenc}
\renewcommand{\rmdefault}{phv}%\fontfamily{phv}
\usepackage{tikz}

\begin{document}
    \begin{tikzpicture}
        \node[anchor=west] at (0,0){hallo};
        \node[anchor=west] at (0,1){hallo};
        \node[anchor=west] at (0,2){hallo};
        \node[anchor=west] at (0,3){hallo};
        \node[anchor=west] at (0,4){hallo};
        
    \end{tikzpicture}
\end{document}