Is there a way to draw the axis arrows of a graph made via pgfplots longer than the graph itself? For reference, here is what my graph currently looks like:
And here is how I want it to look like:
(Sorry for paint)
I currently use axis line style = {-latex}.
Thanks!
Edit:
Minimal working example (by request):
\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[axis lines = middle, axis line style = {-latex}, grid = both]
\end{axis}
\end{tikzpicture}
\end{document}


