()
| 2157 | |
| 2158 | @image_comparison(['barh_tick_label.png'], style='mpl20') |
| 2159 | def test_barh_tick_label(): |
| 2160 | # From 2516: plot barh with array of string labels for y axis |
| 2161 | ax = plt.gca() |
| 2162 | ax.barh([1, 2.5], [1, 2], height=[0.2, 0.5], tick_label=['a', 'b'], |
| 2163 | align='center') |
| 2164 | |
| 2165 | |
| 2166 | def test_bar_timedelta(): |