3D Balkendiagramm erstellen
Hallo zusammen,
ich benötige ein 3D Balkendiagramm für unseren Verein, wo pro Jahr die Gesamtzahl der Starter, die 1., 2. und 3. Plätze pro Jahr erscheinen.
Ein 2D-Digramm habe ich schon erstellt, ist aber zu unübersichtlich.
Ideal wäre es, alle 4 Datenquellen in einem Diagramm abzubilden, daher die Wahl auf ein 3D-Balkendiagramm inkl. Legende.
Als LaTeX-Neuling kämpfe ich noch mit dem technischen Umfeld bei einem 3D Diagramm. Ich gehe aktuell davon aus, dass mir ein 3D Diagramm hier die Übersicht über die Datenlage besser ermöglicht.
Ich habe mich schon mit addplot3 versucht, aber das Egebnis war eher eine Katastrophe.
Könnt ihr mir bitte hier hilfreich mit Code unter die Arme greifen?
VIELEN DANK VORAB!
jkrais
Hier mal mein LaTeX-Dokument für 2D mit der Datenlage:
<pre>
\documentclass[]{letter}
%-----------------------
% Fuer Balkendiagramme
\usepackage{tikz}
\usepackage{pgfplots}
\usepackage{pgfplotstable}
\usetikzlibrary{calc}
\pgfplotsset{
compat=1.9,
xlabel near ticks,
ylabel near ticks
}
%-----------------------
\begin{document}
\begin{tikzpicture}
\begin{axis}[
title=Kreismeisterschaften,
height=6cm,
width=11.5cm,
enlargelimits=0.05,
legend style={
at={(0.5,-0.2)},
anchor=north,
legend columns=-1
},
ymin=0,
ymax=55,
enlargelimits=0.1,
x tick label style={/pgf/number format/1000 sep=},
x tick label style={rotate=45,anchor=east},
ylabel={Plätze},
%ybar interval=0.1,
ytick={0,10,...,55},
xtick=data, nodes near coords, nodes near coords align={vertical},
every node near coord/.append style={anchor=mid west,rotate=60}
]
% Starter gesamt
\addplot coordinates {
(2010,23)
(2011,17)
(2012,25)
(2013,43)
(2014,38)
(2015,42)
(2016,37)
(2017,45)
(2018,39)
(2019,47)
};
% 1. Platzierungen
\addplot coordinates {
(2010, 3)
(2011, 1)
(2012, 3)
(2013, 3)
(2014, 1)
(2015, 9)
(2016, 15)
(2017, 12)
(2018, 13)
(2019, 18)
};
% 2. Platzierungen
\addplot coordinates {
(2010, 3)
(2011, 4)
(2012, 2)
(2013, 4)
(2014, 3)
(2015, 3)
(2016, 7)
(2017, 8)
(2018, 4)
(2019, 12)
};
% 3. Platzierungen
\addplot coordinates {
(2010, 1)
(2011, 4)
(2012, 3)
(2013, 3)
(2014, 6)
(2015, 3)
(2016, 5)
(2017, 5)
(2018, 2)
(2019, 5)
};
\legend{Starter gesamt, 1. Platz, 2. Platz, 3. Platz}
\end{axis}
\end{tikzpicture}
\end{document}
<code>