Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change "multiline" to "tabular" tooltips #18

Merged
merged 1 commit into from
Jul 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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