Conditionally relabel a HoloViews object
(hv_obj, **kwargs)
| 916 | |
| 917 | |
| 918 | def relabel(hv_obj, **kwargs): |
| 919 | """Conditionally relabel a HoloViews object""" |
| 920 | if kwargs: |
| 921 | hv_obj = hv_obj.relabel(**kwargs) |
| 922 | return hv_obj |
| 923 | |
| 924 | |
| 925 | def redim_(hv_obj, **kwargs): |
no outgoing calls
no test coverage detected
searching dependent graphs…