I have a problem with my gantt chart. It looks squished because i am specifying timeframes in weeks, but they are shown in days. Therefore, the milestone rectangle looks weird.
I already tried to set time slot unit to week, but unfortunately this key is not available.
What are my options?
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{pgfgantt}
\begin{document}
\section{MWE}
\begin{ganttchart}[
hgrid,
vgrid={*{6}{draw=none}, dotted},
x unit=0.125cm,
time slot format=isodate,
time slot unit=day,
calendar week text = {W\currentweek{}}
]{2019-02-04}{2019-05-19}
\gantttitlecalendar{year, month=name, week} \\
\ganttgroup{Proposal}{2019-02-04}{2019-02-24} \\
\ganttbar{Proposal Submits}{2019-02-04}{2019-02-10}
\ganttlinkedbar{}{2019-02-18}{2019-02-24} \\
\ganttgroup{Implementation}{2019-02-11}{2019-03-03} \\
\ganttbar{Something}{2019-02-11}{2019-02-17} \\
\ganttlinkedbar{Else...}{2019-02-18}{2019-03-03} \\
\ganttlinkedmilestone{Milestone 1}{2019-03-03}
\end{ganttchart}
\end{document}
The question PGFGantt Compressed Calendar by week? seems to be related, but I think I actually applied the solution and it is not that useful in my case, because I have a lot more frames causing the problem.
On the other side I am not able to increase x unit because then the chart does not longer fit the page.


