Setting height and width on hvplot scatter_matrix

I would expect the following to work for setting height or width for a scatter matrix plot, but the sizing is unchanged.

import hvplot
import pandas as pd
import numpy as np

# Sample DataFrame
df = pd.DataFrame({
    'A': np.random.randn(100),
    'B': np.random.randn(100),
    'C': np.random.randn(100)
})

# Scatter matrix plot with specified width and height for each subplot
scatter_matrix = hvplot.scatter_matrix(df, width=200, height=900).opts(width=2000)

scatter_matrix

How can I modify the size of a scatter matrix in hvplot?

scatter_matrix = hvplot.scatter_matrix(df).opts(plot_size=500)

scatter_matrix

Found thru
hv.help(scatter_matrix)

But perhaps this warrants a bug report on hvplot. I’d also expect width/height to work.