(ha)
| 9250 | |
| 9251 | @pytest.mark.parametrize('ha', ['left', 'center', 'right']) |
| 9252 | def test_ylabel_ha_with_position(ha): |
| 9253 | fig = Figure() |
| 9254 | ax = fig.subplots() |
| 9255 | ax.set_ylabel("test", y=1, ha=ha) |
| 9256 | ax.yaxis.set_label_position("right") |
| 9257 | assert ax.yaxis.label.get_ha() == ha |
| 9258 | |
| 9259 | |
| 9260 | def test_bar_label_location_vertical(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…