From b4e2042b529758f97641a0c2af5b8427b87d766e Mon Sep 17 00:00:00 2001 From: Lorenzo Volpi Date: Sun, 26 Nov 2023 16:30:16 +0100 Subject: [PATCH] switched estimator widget to MultiChoice --- qcpanel/viewer.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/qcpanel/viewer.py b/qcpanel/viewer.py index 596ff48..8d7b1e1 100644 --- a/qcpanel/viewer.py +++ b/qcpanel/viewer.py @@ -96,11 +96,15 @@ class QuaccTestViewer(param.Parameterized): parameters=["estimators"], widgets={ "estimators": { - "widget_type": pn.widgets.CheckButtonGroup, - "orientation": "vertical", + "widget_type": pn.widgets.MultiChoice, + # "orientation": "vertical", "sizing_mode": "scale_width", - "button_type": "primary", - "button_style": "outline", + # "button_type": "primary", + # "button_style": "outline", + "solid": True, + "search_option_limit": 1000, + "option_limit": 1000, + "max_items": 1000, } }, )