Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

I'm using the pgfgantt package (v3.0) on TeX Live 2012. Adding the chart and titles works fine, however adding a ganttbar gives a double error of

Package tikz Error: Extra options not allowed for 
clipping path command..

The bar is though added to the chart, and is seen in the pdf. I'm also using the progress option, but the progress color is always 0% complete.

A sample code with the problem:

\begin{figure}
    \centering
    \begin{tikzpicture}
        \begin{ganttchart}[bar/.style={fill=green}, incomplete/.style={fill=red}]{25}
            \gantttitle{Week Calendar}{25} \\
            \gantttitlelist{6,...,30}{1}\\
            \ganttbar[progress=100]{Do something}{1}{5}\\
            \ganttlinkedbar[progress=0]{Continue it}{6}{15}\\
            \ganttbar[progress=40]{Report}{1}{25}
        \end{ganttchart}
    \end{tikzpicture}
\label{fig:calendar}
\end{figure} 

The corresponding figure enter image description here

Any ideas to solve this?

share|improve this question
Could you complete your code to a full minimal working example (MWE) (easy copyable, all packages needed loaded)? A self-composed MWE works just fine here. What is your version of PGF/TikZ (you can easily check with \pgfversion)? – Qrrbrbirlbel Feb 18 at 14:50
It also works for me without any problem. – percusse Mar 12 at 15:05

closed as too localized by percusse, Kurt, mafp, Stefan Kottwitz Mar 12 at 15:49

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.