Commit 32fb9052 authored by Pierre-Antoine Rouby's avatar Pierre-Antoine Rouby
Browse files

Results: Plot: XY: Fix fill.

Showing with 2 additions and 3 deletions
+2 -3
......@@ -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()
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment