Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions ultraplot/axes/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -1806,12 +1806,6 @@ def _fix_patch_edges(obj, edgefix=None, **kwargs):
obj.set_linestyle("-")
obj.set_linewidth(linewidth)
obj.set_edgecolor("face")

import matplotlib.patheffects as pe

obj.set_path_effects(
[pe.Stroke(linewidth=linewidth, linestyle="-", foreground="face")]
)
elif isinstance(obj, mcollections.Collection): # e.g. QuadMesh, PolyCollection
obj.set_linewidth(linewidth)
obj.set_edgecolor("face")
Expand Down
1 change: 0 additions & 1 deletion ultraplot/tests/test_1dplots.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,5 +424,4 @@ def test_triplot_variants(x, y, z, triangles, use_triangulation, use_datadict):
ax.triplot("x", "y", "ko-", data=df)
else:
ax.triplot(x, y, "ko-") # Without specific triangles

return fig