If set to another axis id (e.g. `x2`, `y`), the range of this axis will match the range of the corresponding axis in data- coordinates space. Moreover, matching axes share auto-range values, category lists and histogram auto-bins. Note that setting axes simul
(self)
| 800 | |
| 801 | @property |
| 802 | def matches(self): |
| 803 | """ |
| 804 | If set to another axis id (e.g. `x2`, `y`), the range of this |
| 805 | axis will match the range of the corresponding axis in data- |
| 806 | coordinates space. Moreover, matching axes share auto-range |
| 807 | values, category lists and histogram auto-bins. Note that |
| 808 | setting axes simultaneously in both a `scaleanchor` and a |
| 809 | `matches` constraint is currently forbidden. Moreover, note |
| 810 | that matching axes must have the same `type`. |
| 811 | |
| 812 | The 'matches' property is an enumeration that may be specified as: |
| 813 | - A string that matches one of the following regular expressions: |
| 814 | ['^x([2-9]|[1-9][0-9]+)?( domain)?$', |
| 815 | '^y([2-9]|[1-9][0-9]+)?( domain)?$'] |
| 816 | |
| 817 | Returns |
| 818 | ------- |
| 819 | Any |
| 820 | """ |
| 821 | return self["matches"] |
| 822 | |
| 823 | @matches.setter |
| 824 | def matches(self, val): |