[Tex/LaTex] How to draw a line of dots in tikz

tikz-pgf

Instead of drawing a dashed line as follows:

\draw [dashed] (10,1) -- (10,11);

I would like to draw a list of dots from (10,1) to (10,11), like ........., but vertically. Could anyone tell me what to put at the place of [dashed]?

Best Answer

Use \draw[dotted] or \draw[densely dotted] or \draw[loosely dotted], for example.