Right now I can only get it to be vertical.
I'm using for code:
Code: Select all
\frame
{
\frametitle{Slide Title}
\begin{tikzpicture}
[/tikz/every pin edge/.style = <-, scale=1.0]
\begin{axis}
axis x line = bottom,
axis y line = left,
width = 1.01\textwidth,
height = .63\textwidth, % Adjusted
legend style = { at = {(1.00,0.30)}, draw = none },
xlabel = Year,
ylabel = Percent,
ymax = 93,
ymin = 27,
ytick = {30,40,...,90},
xmax = 1993,
xmin = 1967,
xtick = {1970, 1980, ..., 1990},
]
\node[coordinate, pin = 90:
] at (axis cs:1985,75) { };
\end{axis}
\end{tikzpicture}
}