How can you align the text inside labels with pgfplots? In the example below, I would like to align both the k's and the m's.
\documentclass[preview]{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
title={$y=kx+m$},
ylabel={$y$},
xlabel={$x$},
legend cell align=left,
]
\addplot[blue, domain=1:4, samples=4] {10*x - 5};
\addlegendentry{$k = 10$, $m = -5$}
\addplot[red, domain=1:4, samples=4] {2*x + 3};
\addlegendentry{$k = 2$, $m = 3$}
\end{axis}
\end{tikzpicture}
\end{document}



