(self, xAx)
| 20 | """Base class for chart axis objects. All axis objects share these properties.""" |
| 21 | |
| 22 | def __init__(self, xAx): |
| 23 | super(_BaseAxis, self).__init__() |
| 24 | self._element = xAx # axis element, c:catAx or c:valAx |
| 25 | self._xAx = xAx |
| 26 | |
| 27 | @property |
| 28 | def axis_title(self): |