TikZ PGF – How to Draw a Circle with Specified Radius in LaTeX

circlestikz-pgf

I want to draw a circle between the x and y-axis. I also want to write a word over the radius. The arrow in the radius is not showing, how to improve it?

\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{center}
\begin{tikzpicture}[scale=0.6]
\filldraw[color=black!60, fill=white!5, very thick](-1,0) circle (2.5);
\filldraw [red] (-1,0) circle (3pt) node[above right] (n1) {$h$};

\draw (-1,0) [thick] edge[->] (-2.2,-2.2);


\end{tikzpicture}
\end{center}
\end{document}

Best Answer

Like this?

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{arrows.meta}
\usetikzlibrary{decorations.text}
\begin{document}
\begin{center}
\begin{tikzpicture}[scale=0.6]
\filldraw[color=black!60, fill=white!5, very thick](-1,0) circle (2.5);
\draw[postaction={decorate,
    decoration={raise=4pt, text along path, 
    text align=center, reverse path,
    text={a word}}}, thick, -Stealth] (-1,0) -- (-2.2,-2.2);
\filldraw [red] (-1,0) circle (3pt) node[above right] (n1) {$h$};
\draw[-Stealth] (-4,-3) -- (4,-3) node[below left] {$x$};
\draw[-Stealth] (-4,-3) -- (-4,4) node[below left] {$y$};
\end{tikzpicture}
\end{center}
\end{document}

enter image description here