()
| 9181 | |
| 9182 | |
| 9183 | def test_multiplot_autoscale(): |
| 9184 | fig = plt.figure() |
| 9185 | ax1, ax2 = fig.subplots(2, 1, sharex='all') |
| 9186 | ax1.plot([18000, 18250, 18500, 18750], [2, 3, 2, 3]) |
| 9187 | ax2.axhspan(-5, 5) |
| 9188 | xlim = ax1.get_xlim() |
| 9189 | assert np.allclose(xlim, [18000, 18800]) |
| 9190 | |
| 9191 | |
| 9192 | def test_sharing_does_not_link_positions(): |