I use the following code to draw from node (x2), which is located at (4,3), in one direction, return to it and then draw in another direction.
Is there a way to avoid returning to the node, for example saying: draw from node (x2) with xshift 4cm, then draw from node (x2) with yshift 3cm.
\documentclass{beamer}
\beamertemplatenavigationsymbolsempty
\usepackage{tikz}
\usepackage{pgfplots}
\begin{document}
\begin{frame}[fragile,t]
\frametitle{}
\begin{tikzpicture}[scale=.9, transform shape]
\draw [thick,-latex](0,0) -- (7.6,0) node [black, xshift=.2cm, yshift=0cm] {};
\draw [thick,-latex](0,0) -- (0,7) node [black, xshift=0cm, yshift=.2cm] {};
\draw [very thick, blue] (4.,3.) node (x2){} node [xshift=.2cm, yshift=.2cm] {x2} +(-30:2.6cm) -- +(150:4.6cm);
\draw [thick, black, dotted] (x2.center) +(180:4.) -- (x2.center) -- +(-90:3);
\end{tikzpicture}
\end{frame}
\end{document}

