I would appreciate if someone could answer a few questions of mine regarding TikZ library "timeline" (source code is here: https://github.com/cfiandra/timeline).
Here is MWE:
\documentclass[border=10pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{timeline}
\begin{document}
\begin{tikzpicture}[timespan={},timeline width=25]
\timeline[custom interval=true]{September 2021, October 2021, November 2021, December 2021, January 2022}
\begin{phases}
\initialphase{involvement degree=2cm}
\phase{between week=1 and 2 in 0.5,involvement degree=2.5cm}
\end{phases}
\addmilestone{at=phase-0.90,direction=90:1cm,text={\textbf{Submission of the Grant Appliction}},text options={above}}
\addmilestone{at=phase-1.280,direction=320:3cm,text={\textbf{The Team of Skilled Researchers will have been assembled.}},text options={below}}
\end{tikzpicture}
\end{document}
Here is the screenshot of the output:
I have following questions:
- How can I add a line break to the text in the milestone? Some annotations are too long for one line, so I would like to split them into two lines.
- Is it possible to change distance between the left edge of the black timeline and the word "September"?
Thank you!

