diff --git a/metplotpy/plots/taylor_diagram/taylor_diagram.py b/metplotpy/plots/taylor_diagram/taylor_diagram.py index 8e021d5c..904b64df 100644 --- a/metplotpy/plots/taylor_diagram/taylor_diagram.py +++ b/metplotpy/plots/taylor_diagram/taylor_diagram.py @@ -24,6 +24,7 @@ import matplotlib.pyplot as plt from matplotlib.font_manager import FontProperties from matplotlib.projections import PolarAxes +from matplotlib.transforms import Affine2D import mpl_toolkits.axisartist.floating_axes as fa import mpl_toolkits.axisartist.grid_finder as gf import numpy as np @@ -172,7 +173,7 @@ def _create_figure(self) -> None: # in Matplotlib 3.10, the default for apply_theta_transforms=True has been deprecated, explicitly set this # to True - tr = PolarAxes.PolarTransform(apply_theta_transforms=True) + tr = PolarAxes.PolarTransform(apply_theta_transforms=False) # Correlation labels rlocs = np.array([0, 0.2, 0.4, 0.6, 0.7, 0.8, 0.9, 0.95, 0.99, 1])