Das folgende Beispiel füllt nur einen Teil des Kreissektors. Was muss ich anders machen, um den ganzen Kreissektor zu füllen. Öffne in Overleaf
%\documentclass[]{article} \documentclass[border=5mm, varwidth]{standalone} \usepackage{pgfplots} \usepgfplotslibrary{polar} \usepgfplotslibrary{fillbetween} \pgfplotsset{compat=1.13} \begin{document} \begin{tikzpicture} \begin{polaraxis}[] \addplot[name path=A, draw=blue] coordinates { (0,0) (30,1)}; \addplot[name path=B, draw=blue] coordinates { (0,0) (90,1)}; \addplot[name path=C, draw=blue, domain=30:90, fill=pink]{1}; % \addplot fill between[of= A and B]; % kein Effekt \end{polaraxis} \end{tikzpicture} \end{document} |
Hier ist mal ein Alternativvorschlag: Öffne in Overleaf
\documentclass[border=5mm, varwidth]{standalone} \usepackage{pgfplots} \pgfplotsset{compat=1.13} \usepgfplotslibrary{polar} \begin{document} \begin{tikzpicture} \begin{polaraxis} \addplot[blue,domain=30:90,fill=pink,fill opacity=.5]{1}--(0,0)--cycle; \end{polaraxis} \end{tikzpicture} \end{document} beantwortet 15 Feb '18, 18:02 esdd Aha, ja da muss man mal drauf kommen, dass diese Notation greift beim
(15 Feb '18, 21:36)
cis
|