Results: Plot: XY: Fix fill.

mesh
Pierre-Antoine Rouby 2023-08-09 17:32:19 +02:00
parent 6356bab320
commit 32fb90521f
1 changed files with 2 additions and 3 deletions

View File

@ -159,9 +159,8 @@ class PlotXY(APlot):
poly_x = poly_l_x + list(reversed(poly_r_x)) + [poly_l_x[0]]
poly_y = poly_l_y + list(reversed(poly_r_y)) + [poly_l_y[0]]
# FIXME: Fill do not works ? (tmp fix: use plot)
self.canvas.axes.fill(poly_x, poly_y, color='blue', alpha=0.5)
self.canvas.axes.plot(poly_x, poly_y, color='blue', alpha=0.5)
self.canvas.axes.fill(poly_x, poly_y, color='blue', alpha=1)
self.canvas.axes.autoscale_view(True, True, True)
self.canvas.axes.autoscale()