Note
Click here to download the full example code
JoinStyle#
The matplotlib._enums.JoinStyle
controls how Matplotlib draws the corners
where two different line segments meet. For more details, see the
JoinStyle
docs.
import matplotlib.pyplot as plt
from matplotlib._enums import JoinStyle
JoinStyle.demo()
plt.show()