Skip to content

Commit 5cfc47c

Browse files
committed
do not enforce markers in pzmap
1 parent 6ee112b commit 5cfc47c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/plotting.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -730,15 +730,15 @@ pzmap
730730
z,p,k = zpkdata(system)
731731
if !isempty(z[1])
732732
@series begin
733-
markershape := :c
733+
markershape --> :c
734734
markersize --> 15.
735735
markeralpha --> 0.5
736736
real(z[1]),imag(z[1])
737737
end
738738
end
739739
if !isempty(p[1])
740740
@series begin
741-
markershape := :x
741+
markershape --> :x
742742
markersize := 15.
743743
real(p[1]),imag(p[1])
744744
end
@@ -749,7 +749,7 @@ pzmap
749749
S,C = sin.(v),cos.(v)
750750
@series begin
751751
linestyle --> :dash
752-
c := :black
752+
linecolor := :black
753753
grid --> true
754754
C,S
755755
end

0 commit comments

Comments
 (0)