Skip to content

Commit 3003bce

Browse files
committed
Change paragraph title to 'More complex Sankey diagram with colored links'
1 parent 367e623 commit 3003bce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/python/sankey-diagram.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ fig.update_layout(title_text="Basic Sankey Diagram", font_size=10)
6262
fig.show()
6363
```
6464

65-
### More complex Sankey diagram
65+
### More complex Sankey diagram with colored links
6666

67-
```python inputHidden=false outputHidden=false
67+
```python
6868
import plotly.graph_objects as go
6969
import urllib, json
7070

@@ -76,7 +76,7 @@ data = json.loads(response.read())
7676
opacity = 0.4
7777
# change 'magenta' to its 'rgba' value to add opacity
7878
data['data'][0]['node']['color'] = ['rgba(255,0,255, 0.8)' if color == "magenta" else color for color in data['data'][0]['node']['color']]
79-
data['data'][0]['link']['color'] = [data['data'][0]['node']['color'][src].replace("0.8", str(opacity))
79+
data['data'][0]['link']['color'] = [data['data'][0]['node']['color'][src].replace("0.8", str(opacity))
8080
for src in data['data'][0]['link']['source']]
8181

8282
fig = go.Figure(data=[go.Sankey(

0 commit comments

Comments
 (0)