File tree 1 file changed +1
-3
lines changed
1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,6 @@ fig = go.Figure(
94
94
95
95
fig.update_layout(
96
96
title = " Life Expectancy in Europe: 1952 and 2002" ,
97
- width = 1000 ,
98
97
height = 1000 ,
99
98
showlegend = False ,
100
99
)
@@ -109,7 +108,7 @@ fig.show()
109
108
110
109
In this example, we add arrow markers to the plot. The first trace adds the lines connecting the data points and arrow markers.
111
110
The second trace adds circle markers. On the first trace, we use ` standoff=8 ` to position the arrow marker back from the data point.
112
- For the arrow marker to point directly at the circle marker, this value should be half the circle marker size.
111
+ 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 .
113
112
114
113
``` python
115
114
import pandas as pd
@@ -165,7 +164,6 @@ fig = go.Figure(
165
164
166
165
fig.update_layout(
167
166
title = " Life Expectancy in Europe: 1952 and 2002" ,
168
- width = 1000 ,
169
167
height = 1000 ,
170
168
showlegend = False ,
171
169
)
You can’t perform that action at this time.
0 commit comments