I am using Pgfplots to make a very simple graph. I already have the code below
\documentclass{article}
\usepackage{tikz,pgfplots}
\pagestyle{empty}
\begin{document}
\begin{tikzpicture}[>=latex]
\begin{axis}[
axis x line=center,
axis y line=center,
xtick={-5,-4,...,5},
ytick={-5,-4,...,5},
xlabel={$x$},
ylabel={$y$},
xlabel style={below right},
ylabel style={above left},
xmin=-10.5,
xmax=10.5,
ymin=-10.5,
ymax=10.5]
\addplot [mark=none,domain=-4:4] {x};
\end{axis}
\end{tikzpicture}
\end{document}
What I need is to be able to use symbols other than numbers in the axes. So, instead of 1 2 3 4... I would like to have, for instance, + + _ _ + + or other symbols for each point in the axes. How can I do that? I hope my question is clear!

xticklabels={$-$, $-$, $-$, $-$, $-$, $+$, $+$, $+$, $+$, $+$, $+$}? – Jake Feb 07 '13 at 13:43xtick={-5,-4,...,5},and it worked. Do you know how to add those same symbols to the diagonal axis? – EduDominic Feb 07 '13 at 13:55\addplot ...? – Jake Feb 07 '13 at 13:58\addplot3and take a look at Section 4.5 of thepgfplotsmanual. – Psirus Feb 07 '13 at 14:24