Set timezone info. Parameters ---------- tz : str or `~datetime.tzinfo`, default: :rc:`timezone` Ticks timezone. If a string, *tz* is passed to `dateutil.tz`.
(self, tz)
| 1080 | self.tz = _get_tzinfo(tz) |
| 1081 | |
| 1082 | def set_tzinfo(self, tz): |
| 1083 | """ |
| 1084 | Set timezone info. |
| 1085 | |
| 1086 | Parameters |
| 1087 | ---------- |
| 1088 | tz : str or `~datetime.tzinfo`, default: :rc:`timezone` |
| 1089 | Ticks timezone. If a string, *tz* is passed to `dateutil.tz`. |
| 1090 | """ |
| 1091 | self.tz = _get_tzinfo(tz) |
| 1092 | |
| 1093 | def datalim_to_dt(self): |
| 1094 | """Convert axis data interval to datetime objects.""" |