Michael Sieberer
Results
1
comments of
Michael Sieberer
A quick fix can be implemented by Monkey-patching MPL: ```python from matplotlib.lines import Line2D from matplotlib.legend import Legend Line2D._us_dashSeq = property(lambda self: self._dash_pattern[1]) Line2D._us_dashOffset = property(lambda self: self._dash_pattern[0]) Legend._ncol =...