Skip to content

Commit

Permalink
Change "multiline" to "tabular" tooltips (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
tcmetzger committed Jul 11, 2023
1 parent 747166d commit 36dbfe9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions notebooks/08_plot_tools.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@
" separator.\n",
"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",
"\n",
"### Multiline tooltips\n",
"### Tabular tooltips\n",
"\n",
"Tooltips can also have **multiple lines and use multiple data fields**. Use a list of\n",
"tuples to specify tooltips with multiple lines.\n",
Expand Down Expand Up @@ -339,7 +339,7 @@
"# load data for ColumnDataSource from demo data set\n",
"source = ColumnDataSource(data.get_biggest_airlines_by_passengers())\n",
"\n",
"# Define tooltips as a list of tuples\n",
"# define tooltips as a list of tuples\n",
"TOOLTIPS = [\n",
" (\"Position\", \"@position\"),\n",
" (\"Carrier\", \"@unique_carrier_name\"),\n",
Expand Down

0 comments on commit 36dbfe9

Please sign in to comment.