Skip to content

Commit

Permalink
fix: use _draw_all instead of draw_all for matplotlib
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-mazenoux committed Sep 22, 2023
1 parent fd61e3c commit d1be466
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DIRAC/Core/Utilities/Graphs/QualityMapGraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def draw(self):
cb = ColorbarBase(
cax, cmap=self.cmap, norm=self.norms, boundaries=self.cbBoundaries, values=self.cbValues, ticks=self.cbTicks
)
cb.draw_all()
cb._draw_all()
# cb = self.ax.colorbar( self.mapper, format="%d%%",
# orientation='horizontal', fraction=0.04, pad=0.1, aspect=40 )
# setp( cb.outline, linewidth=.5 )
Expand Down

0 comments on commit d1be466

Please sign in to comment.