pgfplots (tableplot): Verbinden von Koordinaten
[![alt text][1]][1]
Ich habe hier eine Tabelle mit Punktkoordinaten.
1 0.00 3.60
2 1.00 3.60
3 1.50 4.47
*Frage: Wenn ich später die Punkte in irgendeiner Reihenfolge verbinden will, z.B. `1-3-2`, wie mache ich das am besten?*
Ich habe
`nodes near coords={\Label},
`visualization depends on={value \thisrowno{0} \as \Label},
every node near coord/.append style={name={P-\Label}}`
und dann `\draw[] (P-1) -- (P-3);`
versucht, das klappte nicht; ist auch vermutlich nicht 100%ig optimal, da so die nodes, nicht die Koordinaten, verbunden würden.
\documentclass[margin=5mm, tikz]{standalone}
%\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}%[scale=1.875]
\begin{axis}[
hide axis,
x = 15mm, y=15mm
]
\addplot+ [only marks,
mark options={red},
mark size=1.125pt,
% Bezeichnung
font=\scriptsize\ttfamily, % \tiny % \scriptsize
visualization depends on={value \thisrowno{0} \as \Label},
nodes near coords={\Label},
every node near coord/.append style={text=black},
]
table[x index=1, y index=2] {%
1 0.00 3.60
2 1.00 3.60
3 1.50 4.47
};
\end{axis}
\end{tikzpicture}
\end{document}
[1]: https://texwelt.de/wissen/upfiles/55555555_185.png