Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion doc/python/aggregations.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ layout = dict(
method = 'restyle',
), dict(
args = ['xbins.size', 'M3'],
label = 'Quater',
label = 'Quarter',
method = 'restyle',
), dict(
args = ['xbins.size', 'M6'],
Expand Down
4 changes: 1 addition & 3 deletions doc/python/dumbbell-plots.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ fig = go.Figure(

fig.update_layout(
title="Life Expectancy in Europe: 1952 and 2002",
width=1000,
height=1000,
showlegend=False,
)
Expand All @@ -109,7 +108,7 @@ fig.show()

In this example, we add arrow markers to the plot. The first trace adds the lines connecting the data points and arrow markers.
The second trace adds circle markers. On the first trace, we use `standoff=8` to position the arrow marker back from the data point.
For the arrow marker to point directly at the circle marker, this value should be half the circle marker size.
For the arrow marker to point directly at the circle marker, this value should be half the circle marker size, which is hardcoded to 16 here.

```python
import pandas as pd
Expand Down Expand Up @@ -165,7 +164,6 @@ fig = go.Figure(

fig.update_layout(
title="Life Expectancy in Europe: 1952 and 2002",
width=1000,
height=1000,
showlegend=False,
)
Expand Down