Modify the label of param.Boolean with code

Hi,
I want to modify the label of param.Boolean with code ?

How can I do that?

Eq_48= param.Boolean(True, doc="A sample Boolean parameter", label="Büyüklüğü 4 ve Üzerindeki Depremler")

regards

Use the .param accessor:

parameterized.param.Eq_48.label = 'My fancy new label'
1 Like