ich habe jetzt ein Problem, das eigentlich ziemlich leicht zu lösen sein sollte, denke ich - aber irgendwie bin ich unfähig

Ich habe einen pgf plot mit mehreren plots (siehe anhang) und möchte da ein paar stellen markieren. Zum Beispiel die Stelle bei ca 170µs und 5V. Ich habe mittlerweile schon ettliche versuche mit \node[](){} oder \filldraw[black] coordinates{(170,5)} circle (2pt) node[anchor=north] {}; ausprobiert. Aber wenn überhaupt eine Markierung eingezeichnet wurde, dann immer an der vollkommen falschen Stelle. Darum ist in dem angefügtem Minimalbeispiel auch gleich nichts derartiges eingefügt, weil ich mittlerweile garnicht mehr weiß, wie ich das am besten angehe, habe schon so viel gelesen, aber nichts funktioniert. Kann mir einer von euch vielleicht helfen?
\documentclass[ pdftex,a4paper,11pt,oneside,fleqn, bibliography=totoc,listof=totoc, headlines=2.1,headsepline, numbers=noenddot ]{scrreprt} \usepackage[a4paper,left=3.2cm,right=2.2cm,top=1.5cm,bottom=1.5cm,includeheadfoot]{geometry} \usepackage[pdftex]{graphicx} % Grafiken einbinden \usepackage{color} % Farben ermöglichen \usepackage{siunitx} \usepackage{pgfplots} \usepgfplotslibrary{external} \tikzexternalize[/tikz] \begin{document} \begin{tikzpicture} \begin{axis}[ width=156mm, height=6.5cm, % size of the image grid = major, grid style={dashed, gray!30}, %xmode=log,log basis x=10, %ymode=log,log basis y=10, xmin=-50, % start the diagram at this x-coordinate xmax=300, % end the diagram at this x-coordinate ymin=-3, % start the diagram at this y-coordinate ymax= 8, % end the diagram at this y-coordinate %pgfplots/xtick={0,5,...,60}, % make steps of length 5 %ytick={-3, -2, -1, 0, 1, 2, 3}, %extra x ticks={23}, %extra y ticks={0.507297}, axis background/.style={fill=white}, ylabel=Voltage {[}V{]}, xlabel=Time {[}\SI{}{\us}{]}, tick align=outside] \addplot [color = red] table[y index = 1]{IMG/Latency/2000000/CS1.txt}; \addplot [color = blue] table[y index = 2]{IMG/Latency/2000000/CS1.txt}; \addplot [color = green] table[y index = 1]{IMG/Latency/2000000/CS2.txt}; \addplot [color = yellow] table[y index = 1]{IMG/Latency/2000000/CS3.txt}; \addplot [color = black] table[y index = 1]{IMG/Latency/2000000/CS4.txt}; \addplot [color = purple] table[y index = 1]{IMG/Latency/2000000/CS5.txt}; \addplot [color = orange] table[y index = 1]{IMG/Latency/2000000/TX.txt}; \end{axis} \end{tikzpicture} \end{document}