Hallo zusammen,
ich habe noch ein Problem, wenn die Werte von einem Jahr in einem Balkendiagramm abzubilden sind, erhalte ich pro Wert 4x 2020 an der y-Achse. Wie kann ich das vermeiden?
Anbei der LaTeX-Abschnitt.
Über eine Rückantwort wäre ich sehr dankbar.
Vielen Dank und viele Grüße
jkrais
\documentclass[]{scrbook}
\usepackage{tikz}
\usepackage{pgfplots}
\usepackage{pgfplotstable}
\usetikzlibrary{calc}
\pgfplotsset{
compat=1.17,
xlabel near ticks,
ylabel near ticks
}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
title=Kreismeisterschaften,
xbar, xmin=0,
xlabel={Anzahl Starter},
height=3.5cm,
width=11.5cm,
bar width=0.2cm,
legend style={
at={(0.5,-.5)},
anchor=north,
legend columns=-1
},
symbolic y coords={%
{2020}
},
nodes near coords,
nodes near coords align={horizontal},
grid,
]
\addplot coordinates {
(52,{2020})};
\addplot coordinates {
(14,{2020})};
\addplot coordinates {
(7,{2020})};
\addplot coordinates {
(8,{2020})};
\legend{Starter gesamt, 3. Platz, 2. Platz, 1. Platz}
\end{axis}
\end{tikzpicture}
\end{document}