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.
2 parents 7887018 + c8b4654 commit 4507c9bCopy full SHA for 4507c9b
lib/matplotlib/lines.py
@@ -457,7 +457,8 @@ def recache(self, always=False):
457
if (self.axes and len(x) > 100 and self._is_sorted(x) and
458
self.axes.name == 'rectilinear' and
459
self.axes.get_xscale() == 'linear' and
460
- self._markevery is None):
+ self._markevery is None and
461
+ self.get_clip_on() is True):
462
self._subslice = True
463
if hasattr(self, '_path'):
464
interpolation_steps = self._path._interpolation_steps
0 commit comments