How to shift x-axis with labels in xy plane?. I tried by this code, but failed. it moves the x-line but their corresponding labels are not in the correct place.
\documentclass[]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage{fullpage,amsmath,tkz-base}
\begin{document}
\begin{tikzpicture}
\tkzInit[xmin=0, ymin=0, xmax=10,ymax=10,xstep=1,ystep=1]
\tkzAxeX[label=,xshift=2cm]
\tkzAxeY[label=]
\end{tikzpicture}
\end{document}
I need to shift x and y lines with their labels.
