Is it possible to replace element type with clone?

For example:

points = hv.Points([0, 1, 2])
points * points.clone(element="line")

Or maybe more practical:

bars = hv.Bars(...)
bar * bars.clone(element="Labels", text="text_col")