Used for freeform grids, where some axes may be shared across subplots but others are not. Each entry should be a cartesian subplot id, like "xy" or "x3y2", or "" to leave that cell empty. You may reuse x axes within the same column, and y axes within the sam
(self)
| 134 | |
| 135 | @property |
| 136 | def subplots(self): |
| 137 | """ |
| 138 | Used for freeform grids, where some axes may be shared across |
| 139 | subplots but others are not. Each entry should be a cartesian |
| 140 | subplot id, like "xy" or "x3y2", or "" to leave that cell |
| 141 | empty. You may reuse x axes within the same column, and y axes |
| 142 | within the same row. Non-cartesian subplots and traces that |
| 143 | support `domain` can place themselves in this grid separately |
| 144 | using the `gridcell` attribute. |
| 145 | |
| 146 | The 'subplots' property is an info array that may be specified as: |
| 147 | * a 2D list where: |
| 148 | The 'subplots[i][j]' property is an enumeration that may be specified as: |
| 149 | - One of the following enumeration values: |
| 150 | [''] |
| 151 | - A string that matches one of the following regular expressions: |
| 152 | ['^x([2-9]|[1-9][0-9]+)?y([2-9]|[1-9][0-9]+)?$'] |
| 153 | |
| 154 | Returns |
| 155 | ------- |
| 156 | list |
| 157 | """ |
| 158 | return self["subplots"] |
| 159 | |
| 160 | @subplots.setter |
| 161 | def subplots(self, val): |
no outgoing calls