Hallo, wie kann ich Beschriftung an der linken Seite des Diagramms editieren? Hat jemand Ideen? enter code here \begin{tikzpicture} \begin{axis}[ xbar stacked, legend style={ legend columns=4, at={(xticklabel cs:0.5)}, anchor=north, draw=none }, ytick=data, axis y line=none, axis x line=bottom, tick label style={font=\footnotesize}, legend style={font=\footnotesize}, label style={font=\footnotesize}, xtick={0,100,200,300,400,500,600}, width=.5\textwidth, bar width=10mm, xlabel={Time in ms}, yticklabels ={testtesttest\testtesttesttest\test, testtesttest\testtesttesttest\test,testtesttest\testtesttesttest\test, testtesttest\testtesttesttest\test, testtesttest\test} , y tick label style={align=right}, xmin=0, xmax=600, area legend, y=15mm, enlarge y limits={abs=0.625}, ] \addplot[findOptimalPartition,fill=findOptimalPartition] coordinates {(20,0) (108,1) (5,2) (3,3) (108,4) (20,5)}; \addplot[storeClusterComponent,fill=storeClusterComponent] coordinates {(1.4,0) (2,1) (5,2) (3,3) (2,4) (1,5)}; \addplot[dbscan,fill=dbscan] coordinates {(288,0) (358,1) (5,2) (3,3) (358,4) (288,5)}; \addplot[constructCluster,fill=constructCluster] coordinates {(6,0) (54,1) (5,2) (3,3) (54,4) (6,5)}; %neue \addplot[brightgreen,fill=brightgreen] coordinates {(6,0) (54,1) (5,2) (3,3) (54,4) (6,5)}; \addplot[brightlavender,fill=brightlavender] coordinates {(6,0) (54,1) (5,2) (3,3) (54,4) (6,5)}; \addplot[babypink,fill=babypink] coordinates {(6,0) (54,1) (5,2) (3,3) (54,4) (6,5)}; \addplot[aqua,fill=aqua] coordinates {(6,0) (54,1) (5,2) (3,3) (54,4) (6,5)}; \legend{Falsche Teilenummer verbaut, Kabel/Kabelbaum beschädigt, Stecker beschädigt, Stecker lose, Stecker vertauscht gesteckt, Teil falsch montiert, Teil nicht montiert, Verschmmutzung durch Lackierung} \coordinate (A) at (200,0);% ******** start of changes ************ \coordinate (B) at (300,8mm); \end{axis} % \node at (A) {test}; % \node at (B) {test 2};% ********* end of changes ********** \end{tikzpicture} \caption{X} \label{fig:stats} gefragt 28 Jul '23, 17:47 paulbischoff... |