Is there a way to control the title wrapping width?

I want to use the default title that is dynamically updated along with the controls generated for the groupby option in an hvplot, but want to be able to set the wrapping width of the title to something longer (or even better have it match the plot width). Is there a way to do that?

Eg,

df.hvplot.violin(
    y="solution_cost",
    by="solver",
    color="solver",
    aspect=2.5,
    grid=True,
    legend=False,
    groupby=["heuristic", "min_best_path", "moves_per_iter", "add_noise", "round"],
)

Theoretically it should be able to do so already

from bokeh.sampledata.sprint import sprint as df
import hvplot.pandas

df.hvplot.violin(y="Time", by="Medal", groupby="Year").opts(title="ABC DEF GHI ABC DEF GHIABC DEF GHI ABC DEF GHIABC DEF GHIABC DEF GHI ABC DEF GHIABC DEF GHIABC DEF GHIABC DEF GHI", width=800, height=400)

Seems like something is hardcoded to create new line every two dims.

from bokeh.sampledata.sprint import sprint as df
import hvplot.pandas

df.hvplot.violin(y="Time", by="Medal", groupby=["Medal", "Year", "Country"])

Can you file an issue on hvplot (or maybe HoloViews)?

Indeed, it is hardcoded here:

so it appears to be a holoviews issue.

Thanks for tracking it down and creating an issue!