旋转极轴后旋转 ytick

旋转极轴后旋转 ytick

我将极轴逆时针旋转了 90 度。

\documentclass[a4paper, 11pt]{report}

\usepackage{pgfplots} %Plots direkt in LaTeX aus externen Dateien berechnen
\pgfplotsset{compat = newest} % Use the latest settings, so we don't get trapped with old bugs or limited features.
\usepgfplotslibrary{polar} %für polare Plots
\usetikzlibrary{pgfplots.polar} %für polare Plots

\begin{document}
\begin{tikzpicture}         
    \begin{polaraxis}[
        y dir=reverse, 
        rotate=90,  
        xticklabel style={anchor=-\tick-90}, 
        xtick={0,30,...,330},
        y coord trafo/.code=\pgfmathparse{#1+60},   
        y coord inv trafo/.code=\pgfmathparse{#1-60},
        ytick={-60,-40,-20,0,20,40,60},
    ]
    \addplot coordinates {(0,1) (90,1) (180,1) (270,1)} --cycle;
    \end{polaraxis}
\end{tikzpicture}
\end{document}

现在我想将 ytick 顺时针旋转 90 度,以便数字位于 90 度位置的暗线下方。

我尝试了 xmin=90,xmax=450。然后数字和线就在正确的位置,但我的外部度数不正确。度数应该是 0°-330°。

在此处输入图片描述

相关内容