If no `subplots`, `xaxes`, or `yaxes` are given but we do have `rows` and `columns`, we can generate defaults using consecutive axis IDs, in two ways: "coupled" gives one x axis per column and one y axis per row. "independent" uses a new xy pair for each cell
(self)
| 68 | |
| 69 | @property |
| 70 | def pattern(self): |
| 71 | """ |
| 72 | If no `subplots`, `xaxes`, or `yaxes` are given but we do have |
| 73 | `rows` and `columns`, we can generate defaults using |
| 74 | consecutive axis IDs, in two ways: "coupled" gives one x axis |
| 75 | per column and one y axis per row. "independent" uses a new xy |
| 76 | pair for each cell, left-to-right across each row then |
| 77 | iterating rows according to `roworder`. |
| 78 | |
| 79 | The 'pattern' property is an enumeration that may be specified as: |
| 80 | - One of the following enumeration values: |
| 81 | ['independent', 'coupled'] |
| 82 | |
| 83 | Returns |
| 84 | ------- |
| 85 | Any |
| 86 | """ |
| 87 | return self["pattern"] |
| 88 | |
| 89 | @pattern.setter |
| 90 | def pattern(self, val): |
no outgoing calls
no test coverage detected