Achsenbeschriftung mit TikZ-Formen
Hallo,
ich würde gerne die x-Achse eines Diagramms mit verschiedenen Formen wie Kreise, Rechtecke, etc. beschriften und nicht mit Zahlen/Buchstaben.
Folgendes Beispiel:
\documentclass[12pt,a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\usetikzlibrary{patterns}
\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}[scale=1]
\begin{axis}[
xtick={1,2,3},
]
\addplot[pattern = north west lines,ybar,pattern color=blue]
coordinates {(1,4.6)};
\addplot[pattern = north west lines,ybar,pattern color=blue]
coordinates {(2,4.8)};
\addplot[pattern = north west lines,ybar,pattern color=blue]
coordinates {(3,7.6)};
\end{axis}
\end{tikzpicture}
\end{figure}
\end{document}
![alt text][1]
Und jetzt würde ich gerne die x-Achse anstatt mit "1,2,3" mit TikZ-Grafiken beschriften. Also irgendwie in der Art:
xticklabels={ \begin{figure}
\begin{tikzpicture}
\draw (0,0) circle [radius=1cm];
\end{tikzpicture}
\end{figure},2,3 }
[1]: http://texwelt.de/wissen/upfiles/2016-06-27_18_22_38-Document___C__Users_Micha_Desktop_Plots_PGF---Thesis_Plots---Thesis_2.tex.png