@@ -65,7 +65,12 @@ def __init__(
65
65
# we close the figure so the figure is only contained in this widget
66
66
# and not shown using plt.show()
67
67
plt .close (self .figure )
68
- elif matplotlib .backends .backend == "module://ipympl.backend_nbagg" :
68
+ elif (
69
+ matplotlib .backends .backend == "module://ipympl.backend_nbagg"
70
+ or matplotlib .backends .backend == "widget"
71
+ ):
72
+ # jupyter lab 3 uses "module://ipympl.backend_nbagg"
73
+ # jupyter lab 4 uses "widget"
69
74
with self :
70
75
self .figure .canvas .show ()
71
76
else :
@@ -83,7 +88,12 @@ def clear_display(self, wait=False):
83
88
if matplotlib .backends .backend == "module://matplotlib_inline.backend_inline" :
84
89
self .clear_figure ()
85
90
self .clear_output (wait = wait )
86
- elif matplotlib .backends .backend == "module://ipympl.backend_nbagg" :
91
+ elif (
92
+ matplotlib .backends .backend == "module://ipympl.backend_nbagg"
93
+ or matplotlib .backends .backend == "widget"
94
+ ):
95
+ # jupyter lab 3 uses "module://ipympl.backend_nbagg"
96
+ # jupyter lab 4 uses "widget"
87
97
self .clear_figure ()
88
98
if not (wait ):
89
99
self .figure .canvas .draw_idle ()
@@ -100,7 +110,12 @@ def draw_display(self):
100
110
if matplotlib .backends .backend == "module://matplotlib_inline.backend_inline" :
101
111
with self :
102
112
display (self .figure )
103
- elif matplotlib .backends .backend == "module://ipympl.backend_nbagg" :
113
+ elif (
114
+ matplotlib .backends .backend == "module://ipympl.backend_nbagg"
115
+ or matplotlib .backends .backend == "widget"
116
+ ):
117
+ # jupyter lab 3 uses "module://ipympl.backend_nbagg"
118
+ # jupyter lab 4 uses "widget"
104
119
self .figure .canvas .draw_idle ()
105
120
self .figure .canvas .flush_events ()
106
121
else :
0 commit comments