Richtige Einstellung für ein 3 dimensionales Diag. gesucht3-dimensionales Balkendiagramm mit pgfplots erstellen
Wie komme ich zu folgender Darstellung meines Diagrammes? Danke für eure Hilfe.
![alt text][1]
  [1]: http://texwelt.de/wissen/upfiles/91xGl.png
Quellcode:
    \documentclass{article}
    \usepackage{tikz,pgfplots}
    
    \begin{document}
    \pgfplotsset{width=15cm,height=10cm}
    \begin{tikzpicture}
    \begin{axis}[colorbar sampled,
        colorbar style={samples=13},
        grid=both,
        scale only axis=true,
        width=10cm,
        height=15cm,
        xtick={0,1,...,10},
        ytick={-8,-7,...,10},
        xmin=0,
        xmax=10,
        ymin=-8,
        ymax=8,
        ]
    
    \addplot3[
        scatter,mark=text, text mark={\rule{6mm}{3mm}},only marks,
        point meta=\thisrow{myvalue}
        ]
        table {
        x y color myvalue
    2 3 1 100
    4 3 2 3
    2 7 3 0.75
    7 7 4 45
    8 5 2 3
    2 5 1 10
    4 -4 2 1
    4 1 3 75
    5 -1 4 4
    5 2 2 3
    1 -2 1 10
    2 5 2 5
    3 -8 3 75
    4 5 4 42
    7 -2 2 2
        };
    \end{axis}
    \end{tikzpicture}
    
    \end{document}