Skip to content

Commit 2fa17d9

Browse files
authored
Merge pull request #4557 from rl-utility-man/patch-5
Update hover-text-and-formatting.md
2 parents 788013d + 217ed66 commit 2fa17d9

File tree

1 file changed

+76
-14
lines changed

1 file changed

+76
-14
lines changed

doc/python/hover-text-and-formatting.md

+76-14
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,58 @@ print("user_defined hovertemplate:", fig.data[0].hovertemplate)
283283
fig.show()
284284
```
285285

286+
### Specifying the formatting and labeling of custom fields in a Plotly Express figure using a hovertemplate
287+
288+
This example adds custom fields to a Plotly Express figure using the custom_data parameter and then adds a hover template that applies d3 formats to each element of the customdata[n] array and uses HTML to customize the fonts and spacing.
289+
290+
```python
291+
# %%
292+
import plotly.graph_objects as go
293+
import plotly.express as px
294+
import pandas as pd
295+
import math
296+
import numpy as np
297+
298+
data = px.data.gapminder()
299+
df = data[data['year']==2007]
300+
df = df.sort_values(['continent', 'country'])
301+
302+
df.rename(columns={"gdpPercap":'GDP per capita', "lifeExp":'Life Expectancy (years)'}, inplace=True)
303+
304+
fig=px.scatter(df,
305+
x='GDP per capita',
306+
y='Life Expectancy (years)',
307+
color='continent',
308+
size=np.sqrt(df['pop']),
309+
# Specifying data to make available to the hovertemplate
310+
# The px custom_data parameter has an underscore, while the analogous graph objects customdata parameter has no underscore.
311+
# The px custom_data parameter is a list of column names in the data frame, while the graph objects customdata parameter expects a data frame or a numpy array.
312+
custom_data=['country', 'continent', 'pop'],
313+
)
314+
315+
# Plotly express does not have a hovertemplate parameter in the graph creation function, so we apply the template with update_traces
316+
fig.update_traces(
317+
hovertemplate =
318+
"<b>%{customdata[0]}</b><br>" +
319+
"<b>%{customdata[1]}</b><br><br>" +
320+
"GDP per Capita: %{x:$,.0f}<br>" +
321+
"Life Expectation: %{y:.0f}<br>" +
322+
"Population: %{customdata[2]:,.0f}" +
323+
"<extra></extra>",
324+
mode='markers',
325+
marker={'sizemode':'area',
326+
'sizeref':10},
327+
)
328+
329+
fig.update_layout(
330+
xaxis={
331+
'type':'log'},
332+
)
333+
334+
fig.show()
335+
```
336+
337+
286338
### Hover Templates with Mixtures of Period data
287339

288340
*New in v5.0*
@@ -319,7 +371,7 @@ fig.show()
319371

320372
### Advanced Hover Template
321373

322-
The following example shows how to format a hover template.
374+
This produces the same graphic as in "Specifying the formatting and labeling of custom fields in a Plotly Express figure using a hovertemplate" above, but does so with the `customdata` and `text` parameters of `graph_objects`. It shows how to specify columns from a dataframe to include in the customdata array using the df[["col_i", "col_j"]] subsetting notation. It then references those variables using e.g. %{customdata[0]} in the hovertemplate. It includes comments about major differences between the parameters used by `graph_objects` and `plotly.express`.
323375

324376
```python
325377
import plotly.graph_objects as go
@@ -343,21 +395,31 @@ continent_data = {continent:df_2007.query("continent == '%s'" %continent)
343395

344396
fig = go.Figure()
345397

346-
for continent_name, continent in continent_data.items():
347-
fig.add_trace(go.Scatter(
348-
x=continent['gdpPercap'],
349-
y=continent['lifeExp'],
350-
name=continent_name,
351-
text=continent['continent'],
352-
hovertemplate=
353-
"<b>%{text}</b><br><br>" +
354-
"GDP per Capita: %{x:$,.0f}<br>" +
355-
"Life Expectation: %{y:.0%}<br>" +
356-
"Population: %{marker.size:,}" +
357-
"<extra></extra>",
358-
marker_size=continent['size'],
398+
for continent_name, df in continent_data.items():
399+
fig.add_trace(
400+
go.Scatter(
401+
x=df['gdpPercap'],
402+
y=df['lifeExp'],
403+
marker_size=df['size'],
404+
name=continent_name,
405+
406+
# The next three parameters specify the hover text
407+
# Text supports just one customized field per trace
408+
# and is implemented here with text=df['continent'],
409+
# Custom data supports multiple fields through numeric indices in the hovertemplate
410+
# In we weren't using the text parameter in our example,
411+
# we could instead add continent as a third customdata field.
412+
customdata=df[['country','pop']],
413+
hovertemplate=
414+
"<b>%{customdata[0]}</b><br>" +
415+
"<b>%{text}</b><br><br>" +
416+
"GDP per Capita: %{x:$,.0f}<br>" +
417+
"Life Expectancy: %{y:.0f}<br>" +
418+
"Population: %{customdata[1]:,.0f}" +
419+
"<extra></extra>",
359420
))
360421

422+
361423
fig.update_traces(
362424
mode='markers',
363425
marker={'sizemode':'area',

0 commit comments

Comments
 (0)