[Tex/LaTex] Horizontal positioning with \includegraphics{}

graphics

Using \includegraphics{} from graphicx, I'm including this figure in my document:
alt text

Due to the long legend text, when the caption is centered underneath this, it's not centered under the graph region. Is there some way to adjust the horizontal positioning of the graphic rightwards?

Best Answer

you may be able to play with the horizontal positioning through \hspace*{<length>} command where <length> has to include units like 2cm.

\begin{figure}[h]
\hspace*{length}\includegraphics{}
\end{figure}

but it is probably not a good idea to have a legend on the side.