This is a very weird question, I'm plotting impedance and admitance using parametric curves This is my code
parts[z_] := {Re[z], Im[z]};
func[f_] :=
1/(470 - I/(\[Omega] c) /. c -> 680*10^-9 /. \[Omega] -> 2 f);
ParametricPlot[{parts[func[f]]}, {f, 100, 10000},
AspectRatio -> Automatic, PlotRange -> All,
AxesLabel -> {"Re", "Im"}, PlotLabel -> "Y", Frame -> None,
Axes -> True, AxesStyle -> Arrowheads[{0.0, 0.03}],
PlotLegends -> {"\!\(\*SubscriptBox[\(Y\), \(1\)]\)"},
PlotStyle -> {Red, Blue, "", ""}, MeshFunctions -> {#3 &},
Mesh -> {(Evaluate@
Map[{#1, {Blue, PointSize[Large],
Text[Style[Row[{#1 "Hz"}], 12,
Black], (parts[(func[#])]), {-1.2, 0}]}} &,
Append[Table[1/(i + 1) 10000, {i, 11}], 10000]]) // N},
ImageSize -> {425, Automatic}]
And what is the result? This:
if I try to resize I get some jittering, but sometimes I see this
]
but then I get the first image again. What is going on?

AxesStyle -> Arrowheads[{0.0, 0.03}]. – Szabolcs May 28 '20 at 07:15AxesStyleoption. Something goes wrong with it and MMA puts in far too much image padding. Anyway, I assume that you intended your axes to terminate in an arrow? Take a look at this Q&A, or this one. – MarcoB May 28 '20 at 08:33