旋转极坐标 pgfplot

旋转极坐标 pgfplot

我将极坐标图旋转了 90 度。为了确保 y 线保持在我使用的 90 度位置

xmin=90,
xmax=450,

但现在我需要将 xtick 标签从 0 恢复到 330。

\documentclass[a4paper, 11pt]{report}

\usepackage{pgfplots} 
\pgfplotsset{compat = newest}

\usepgfplotslibrary{polar}

\begin{document}

\begin{tikzpicture}         
    \begin{polaraxis}[
        y dir=reverse, 
        rotate=90,  
        xticklabel style={anchor=-\tick-90}, 
        xtick={0,30,...,330},
        xmin=90,
        xmax=450,
        ]
    \addplot coordinates {(0,20) (90,30) (180,50) (270, 40)} --cycle;
    \end{polaraxis}
\end{tikzpicture}
\end{document}

相关内容