میتوانید با کمک گزینههای xscale
و yscale
کشیدگی محورها را تغییر دهید. برای مثال اعمال اینها در کد شما به صورت زیر اثر خواهد داشت:
\documentclass{article}
\usepackage{tikz}
\usepackage{xepersian}
\settextfont{Yas}
\setdigitfont{Yas}
\begin{document}
\begin{figure}
\begin{tikzpicture}[scale=0.1, xscale=.5, yscale=30]
\draw[->] (0,0) -- (100,0) node[right] {$x$};
\draw[->] (0,0) -- (0,1.2) node[above] {$C(x)$};
\foreach \pos in {10, 20, ...,90}
\draw[shift={(\pos,0)}](0pt,0pt) -- (0pt,-1pt) node[below] {$\pos$};
\foreach \pos in {0.2, 0.4, ..., 1}
\draw[shift={(0,\pos)}] (0pt,0pt) -- (-30pt,0pt) node[left] {$\pos$};
\end{tikzpicture}
\caption{}
\label{fig2.2.6}
\end{figure}
\end{document}