awacke1 commited on
Commit
b0d40a9
·
1 Parent(s): 25a25ba

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -8,13 +8,13 @@ g.graph_attr['outputorder'] = 'edgesfirst'
8
  g.graph_attr['size'] = '10,10'
9
  g.node_attr['style'] = 'filled'
10
  g.node_attr['shape'] = 'box'
11
- g.node_attr['fontcolor'] = '#FFFFFF'
12
 
13
  with g.subgraph(name='cluster_MN') as c:
14
  c.graph_attr['bgcolor'] = '#ADD8E6'
15
  c.node_attr['color'] = '#000000'
16
  c.node_attr['fontcolor'] = '#000000'
17
- c.attr(label='Minnesota')
18
  c.node('Allina Health', URL='https://www.allinahealth.org/', target='_blank', tooltip='Allina Health: Abbott Northwestern Hospital')
19
  c.node('Fairview Health Services', URL='https://www.fairview.org/', target='_blank', tooltip='Fairview Health Services: University of Minnesota Medical Center')
20
  c.node('HealthPartners', URL='https://www.healthpartners.com/', target='_blank', tooltip='HealthPartners: Regions Hospital')
 
8
  g.graph_attr['size'] = '10,10'
9
  g.node_attr['style'] = 'filled'
10
  g.node_attr['shape'] = 'box'
11
+ g.node_attr['fillcolor'] = '#FFDAB9'
12
 
13
  with g.subgraph(name='cluster_MN') as c:
14
  c.graph_attr['bgcolor'] = '#ADD8E6'
15
  c.node_attr['color'] = '#000000'
16
  c.node_attr['fontcolor'] = '#000000'
17
+ c.attr(label='Minnesota', fontsize='24')
18
  c.node('Allina Health', URL='https://www.allinahealth.org/', target='_blank', tooltip='Allina Health: Abbott Northwestern Hospital')
19
  c.node('Fairview Health Services', URL='https://www.fairview.org/', target='_blank', tooltip='Fairview Health Services: University of Minnesota Medical Center')
20
  c.node('HealthPartners', URL='https://www.healthpartners.com/', target='_blank', tooltip='HealthPartners: Regions Hospital')