Parameter for accordion in param.Parameterized class

Hi,

How can I form parameter for pn.accordion in param.Parameterized class ?

regards

Hi @Ahmet

Can you elaborate a bit. What would you like to achieve? Could you share a small, reproducible code example to start from?

Hi,

Like creating a slider with param.Number , Is there anyway to create an accordion ? That accordion reacts activity on other widgets that are created by param.Parameterized.

Faylar = param.Boolean(False, doc=“A sample Boolean parameter”)

@param.depends( ‘Faylar’ , ## ??acc)
def get_plot(self):
if Faylar==True
### like accordion will be active

regards