Skip to content

Commit a92d285

Browse files
committed
Add warning
1 parent 34352f4 commit a92d285

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

examples/Streaming.ipynb

+4-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
"source": [
88
"# Streaming datagrid\n",
99
"\n",
10+
"**This is a new feature preview, if you see any issue with this. Please fill out an issue on Github!**\n",
11+
"\n",
1012
"ipydatagrid provides the ability to lazily request data to the back-end. This requires a live kernel (does not work with a notebook exported to static HTML with nbconvert).\n",
1113
"\n",
1214
"This feature allows a **smaller memory footprint for the grid**, and **reduced loading time for the initial grid display.**"
@@ -35,8 +37,8 @@
3537
"dataframe = pd.DataFrame(np.random.randn(100, 100))\n",
3638
"\n",
3739
"streaming_datagrid = StreamingDataGrid(\n",
38-
" dataframe, \n",
39-
" default_renderer=default_renderer, \n",
40+
" dataframe,\n",
41+
" default_renderer=default_renderer,\n",
4042
" debounce_delay=50\n",
4143
")\n",
4244
"streaming_datagrid"

0 commit comments

Comments
 (0)