The drawing between the points is done using the regular "line drawing"
commands of the backend. So there isn't really any low-level control
over how the line between points is drawn.
As a workaround, however, you can interpolate the data yourself and just
pass more points to matplotlib. You
Hi,
When plotting,
plot(x, y, marker="-")
and its similar markers, what functionality in MPL is responsible for
interpolating between the points? My naive guess is that
interpolation is done in "display" coordinates since everything looks
nice even when zooming in.I inquire because I'd