Skip to content

Commit b7c0277

Browse files
authored
Use .scatter instead of .circle (#37)
1 parent 329ef7a commit b7c0277

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notebooks/11_widgets_interactivity.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -985,7 +985,7 @@
985985
" p = figure(active_scroll=\"wheel_zoom\", lod_threshold=None, title=f\"Plot with N={N} circles\")\n",
986986
" p.add_tools(box_select)\n",
987987
" p.toolbar.active_drag = box_select\n",
988-
" cr = p.circle(x, y, radius=radii, fill_color=colors, fill_alpha=0.6, line_color=None)\n",
988+
" cr = p.scatter(x, y, size=radii, fill_color=colors, fill_alpha=0.6, line_color=None)\n",
989989
"\n",
990990
" return p, cr, box_select"
991991
]

0 commit comments

Comments
 (0)