\documentclass{article}
\usepackage{tikz}
\usepackage{xepersian}
\usepackage{mathabx,cases}
\settextfont{Yas}
\setdigitfont{Yas}
\begin{document}
\begin{tikzpicture}[y=.2cm, x=.3cm,]
    %axis
        \draw (-1,0) -- coordinate (x axis mid) (37,0);
        %ticks
        \foreach \x in {}
            \draw (\x,1pt) -- (\x,-3pt) 
                node[anchor=north] {}; 
        \foreach \x in {1,5,10,...,35}
            \draw[very thick] (\x,2pt) -- (\x,-3pt) 
                node[anchor=north] {\x}; 
    \draw[thick] (1,0.9)--(10,0.9)node[midway,sloped,right,above]{$I_1$};
    \draw[thick] (2,4)--(30,4)node[midway,sloped,right,above]{$I_2$};

\end{tikzpicture}
\end{document}