Skip to content

Commit 36dbfe9

Browse files
authored
Change "multiline" to "tabular" tooltips (#18)
1 parent 747166d commit 36dbfe9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

notebooks/08_plot_tools.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@
266266
" separator.\n",
267267
"See [Formatting tooltip fields](https://docs.bokeh.org/en/latest/docs/user_guide/interaction/tools.html#formatting-tooltip-fields) in the user guide for more examples.\n",
268268
"\n",
269-
"### Multiline tooltips\n",
269+
"### Tabular tooltips\n",
270270
"\n",
271271
"Tooltips can also have **multiple lines and use multiple data fields**. Use a list of\n",
272272
"tuples to specify tooltips with multiple lines.\n",
@@ -339,7 +339,7 @@
339339
"# load data for ColumnDataSource from demo data set\n",
340340
"source = ColumnDataSource(data.get_biggest_airlines_by_passengers())\n",
341341
"\n",
342-
"# Define tooltips as a list of tuples\n",
342+
"# define tooltips as a list of tuples\n",
343343
"TOOLTIPS = [\n",
344344
" (\"Position\", \"@position\"),\n",
345345
" (\"Carrier\", \"@unique_carrier_name\"),\n",

0 commit comments

Comments
 (0)