[Tex/LaTex] Events overlap on chronology with chronosys

chronology

I'm trying to use the chronosys package and unfortunately the events are overlaping each other.

Here is a minimal example :

\documentclass[article]
\usepackage{chronosys}
\begin{document}
\startchronology
  \chronoevent{1500}{Texte A}
  \chronoevent{1525}{Texte B}
\stopchronology
\end{document}

And here is the result :
Overlaping events

Can anyone help me on this?

Best Answer

Try this

\documentclass[article]
\usepackage{chronosys}
\begin{document}
\startchronology
\chronoevent[markdepth=60pt]{1525}{Texte B}%order - furthest out first
\chronoevent{1500}{Texte A}
\stopchronology
\end{document}

enter image description here