changed marker for path with fillrange
This commit is contained in:
parent
9f712b44f3
commit
96d34bb5ee
@ -1057,11 +1057,15 @@ function gr_display(sp::Subplot{GRBackend}, w, h, viewport_canvas)
|
|||||||
x = [l, r, r, l, l]
|
x = [l, r, r, l, l]
|
||||||
y = [b, b, t, t, b]
|
y = [b, b, t, t, b]
|
||||||
gr_polyline(x, y, GR.fillarea)
|
gr_polyline(x, y, GR.fillarea)
|
||||||
series[:ribbon] != nothing || gr_polyline(x, y)
|
st == :shape && gr_polyline(x, y)
|
||||||
end
|
end
|
||||||
|
|
||||||
if st == :path && (series[:fillrange] == nothing || series[:ribbon] != nothing)
|
if st == :path
|
||||||
GR.polyline([xpos - 0.07, xpos - 0.01], [ypos, ypos])
|
if series[:fillrange] == nothing || series[:ribbon] != nothing
|
||||||
|
GR.polyline([xpos - 0.07, xpos - 0.01], [ypos, ypos])
|
||||||
|
else
|
||||||
|
GR.polyline([xpos - 0.07, xpos - 0.01], [ypos+0.4dy, ypos+0.4dy])
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if series[:markershape] != :none
|
if series[:markershape] != :none
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user