I have looked around in the Plots package and am unable to find out how to set the line cap style, and line join style. A simple example is this:
using Plots
pyplot()
plot([0 0.5; 0.5 1], [1 1; 1 1], linewidth=10)
That’s two horizontal lines, one from 0 to 0.5, the other from 0.5 to 1. I do not want rounded line endings, in particular not the overlapping one. Is there a capstyle=:square or similar? Similarly with an angle between the lines, like in:
plot([0 0.5; 0.5 1], [1 1; 1 2], linewidth=10)
Is there a joinstyle=:miter or similar?