When I apply options to a holoviews object (Element, Layout, Holomap, ...), is it possible to retrieve those options later on?
p=hv.Points(np.random.rand(100,2)).options(width=700, size=10, color='r')
Given p
, (how) can I find width=700, size=10, color='r'
?
I've gone through all the attributes of p
and also looked through StoreOptions
but to no avail.