We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08c0fa9 commit 1a6f47bCopy full SHA for 1a6f47b
pandas/plotting/_matplotlib/core.py
@@ -1636,7 +1636,10 @@ def _make_plot(self, fig: Figure) -> None:
1636
1637
if use_collection and segments:
1638
if self.legend:
1639
- lc_colors = [h.get_color() for h in self.legend_handles]
+ lc_colors = [
1640
+ cast(mpl.lines.Line2D, h).get_color() # type: ignore[attr-defined]
1641
+ for h in self.legend_handles
1642
+ ]
1643
else:
1644
# no legend - just follow the default colour cycle
1645
base = mpl.rcParams["axes.prop_cycle"].by_key()["color"]
0 commit comments