FIXED_SIZE_MODE for an id

Hi,

I get these warnings when I serve my app.
Is there an easy way to find out which figure corresponds to the ID mentioned?

2023-06-29 12:35:48,585 Starting Bokeh server with process id: 18496
2023-06-29 12:36:09,011 W-1005 (FIXED_SIZING_MODE): 'fixed' sizing mode requires width and height to be set: figure(id='p1184', ...)
2023-06-29 12:36:09,011 W-1005 (FIXED_SIZING_MODE): 'fixed' sizing mode requires width and height to be set: figure(id='p1115', ...)
2023-06-29 12:36:09,011 W-1005 (FIXED_SIZING_MODE): 'fixed' sizing mode requires width and height to be set: figure(id='p1016', ...)
2023-06-29 12:36:09,109 W-1005 (FIXED_SIZING_MODE): 'fixed' sizing mode requires width and height to be set: figure(id='p2062', ...)
2023-06-29 12:36:13,203 W-1005 (FIXED_SIZING_MODE): 'fixed' sizing mode requires width and height to be set: figure(id='p4021', ...)
2023-06-29 12:36:13,665 WebSocket connection opened
2023-06-29 12:36:13,666 ServerConnection created
1 Like

@philippjfr would you know?

Any fix for this? I am building a new app and just started getting it. I haven’t seen this before, building other panel apps.

Hi @Mana , could you say more about your app please?

Hi @maximlt ,
Thanks for your response. Sure, it’s just a small template app using pn.template.FastListTemplate with two selectors to filter data and render a timeseries and a Perspective. What else can be helpful?
Here’s the message:

Passing a width and height to anything marked with sizing_mode="fixed" should suppress the warning. If there’s no widgets/panes with the sizing mode, then it’s likely in Panel; a minimal reproducible example would help.

1 Like