(self, da, backend)
| 693 | assert opts.kwargs['title'] == 'title' |
| 694 | |
| 695 | def test_dataarray_4d_line_no_title(self, da, backend): |
| 696 | plot = da.hvplot.line(dynamic=False) # Line plot with widgets |
| 697 | opts = Store.lookup_options(backend, plot.last, 'plot') |
| 698 | assert 'title' not in opts.kwargs |
| 699 | |
| 700 | def test_dataarray_3d_histogram_with_title(self, da, backend): |
| 701 | da_sel = da.sel(time=0) |