tikz skalieren
Hallo, an der Achsenbeschriftung sollen statt 5, 10, 15,..., 100 die Werte 50, 100, ...., 1000 stehen. Wie skaliere ich das richtig?
\begin{tikzpicture}[xscale=0.1,yscale=0.1,samples=4000]
\draw[->] (0,0) -- (105.0,0) node[below] {$Q_B$};
\draw[->] (0,0) -- (0,105.0) node[left] {$Q_A$};
\foreach \i in {5.0,10.0,...,100.0} {
\draw (\i,0.1) -- (\i,-0.1) node[below] {$\i$};
}
\foreach \i in {5.0,10.0,...,100.0} {
\draw (0.1,\i) -- (-0.1,\i) node[left] {$\i$};
}
\draw[blue,domain=0:56.66] plot (\x,{85.0-1.5*\x});
\draw[red, domain=0:42.5] plot (\x,{85.0-2*\x});
\end{tikzpicture}