| 55 | # This class exists to provide two separate sets of intervals to the tick, |
| 56 | # as well as create instances of the custom tick |
| 57 | class SkewXAxis(maxis.XAxis): |
| 58 | def _get_tick(self, major): |
| 59 | return SkewXTick(self.axes, None, major=major) |
| 60 | |
| 61 | def get_view_interval(self): |
| 62 | return self.axes.upper_xlim[0], self.axes.lower_xlim[1] |
| 63 | |
| 64 | |
| 65 | # This class exists to calculate the separate data range of the |
no outgoing calls
no test coverage detected
searching dependent graphs…