| 46 | # This class exists to provide two separate sets of intervals to the tick, |
| 47 | # as well as create instances of the custom tick |
| 48 | class SkewXAxis(maxis.XAxis): |
| 49 | def _get_tick(self, major): |
| 50 | return SkewXTick(self.axes, None, major=major) |
| 51 | |
| 52 | def get_view_interval(self): |
| 53 | return self.axes.upper_xlim[0], self.axes.lower_xlim[1] |
| 54 | |
| 55 | |
| 56 | # This class exists to calculate the separate data range of the |
no outgoing calls
searching dependent graphs…