Zuerst mal die Graphik:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{pgfplots}
\begin{document}
\begin{figure}[h!]
\centering
\begin{small}
\begin{tikzpicture}[scale=0.75, transform shape]
\begin{axis}[
ybar,
bar width=2em,
width=18em, height=20em, % Seize of the Plots
xlabel={year},
ylabel={million tons},
symbolic x coords={2024,2025},
xtick=data,
ymin=80, ymax=81.8,
ytick={80.2,80.4,80.6,80.8,81.0,81.2,81.4,81.6,81.8},
every node near coord/.append style={font=\small},
enlarge x limits=0.3, %Give some space to the borders
]
\addplot[style=gray,{fill=gray}] coordinates {
(2024,81.0)
(2025,81.8)
};
\end{axis}
\end{tikzpicture}
\end{small}
\caption{Increased Steal Production}
\label{Fig_Increased_Steal_Production}
\end{figure}
\end{document}
Kontext: Es geht um ein Beispiel von "Missbrauch von Statistiken".
Nun scheint es das wenn ich einfach weitere Plots hinzufügen, dies nicht so wirklich klappt wie es soll. Weil Tikz ja zu korrekt das so macht wie wenn ich unterschiedliche Daten hätte. Aber es geht genau darum die Graphik so darzustellen, dass es eben irreführend ist.
Frage also gibt es eine Möglichkeit die Plots so zu zeichnen wie sie sind aber mit unterschiedlicher Färbung?
