Prinzipielle Idee könnte sein, Du zeichnest Dir solche Pfeilspitzen selbst.
Das jetzt zu optimieren, überlasse ich Dir.
![alt text][1]
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[color=blue, >=latex, x={(-0.5cm,-0.5cm)},y={(1cm,0cm)}, z={(0cm,1cm)}]
% Raumfunktionen:
%Pfeilspitzen:
\filldraw[black!40, scale=0.5] (6,1,0) -- (6,2,0) -- (8,1,0) --cycle;
%3D-Koordinatensystem:
\draw[->] (0,0,0) -- (5,0,0) node[left]{$x$};
\draw[->] (0,0,0) -- (0,5,0) node[below]{$y$};
\draw[->] (0,0,0) -- (0,0,5) node[left]{$z$};
%Zahlen auf x-Achse
\foreach \x in {1,2,3,4}
\draw[shift={(\x,0,0)}] (2pt,0pt) -- (-2pt,0pt) node[left]{\footnotesize $\x$};
%Zahlen auf z-Achse
\foreach \z in {1,2,3,4}
\draw[shift={(0,0,\z)}] (2pt,0pt) -- (-2pt,0pt) node[left]
{\footnotesize $\z$};
%Zahlen auf y-Achse
\foreach \y in {1,2,3,4}
\draw[shift={(0,\y,0)}] (0pt,2pt) -- (0pt,-2pt) node[below] {\footnotesize $\y$};
\end{tikzpicture}
\end{document}
[1]: http://texwelt.de/wissen/upfiles/Namenlos-1a_7.png