for all param.Integer(), set the widget to be a box instead of a slider
I know that I can set individual params via pn.Param.widgets but is there a way to do this in bulk by setting a type of param to display a certain way?
confused as to how to do this… pn.Param.mapping is apparently a dictionary of <class 'param.parameters.<parameter>'> - Integer, Float, etc., what would be the command in order to edit these as they’re seemingly dictionary keys that aren’t strings?
Dictionary keys don’t have to be strings as long as they’re immutable, e.g. {("a", "b"): "a, b"} is valid since tuples are immutable. Just import param and use it like strings.
Oh you mean you usually do this, but it’s invalid here: