awacke1 commited on
Commit
5343c3e
·
1 Parent(s): 9320c6d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -0
app.py CHANGED
@@ -16,6 +16,23 @@ from st_click_detector import click_detector
16
 
17
  # Define selection options and sort alphabetically
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  st.graphviz_chart('''
20
  digraph UML_Class_diagram {
21
  fontname="Helvetica,Arial,sans-serif"
 
16
 
17
  # Define selection options and sort alphabetically
18
 
19
+
20
+ st.graphviz_chart('''
21
+ graph Transparency {
22
+ layout=neato
23
+ start=11 // empiric value to set orientation
24
+ bgcolor="#0000ff11"
25
+ node [shape=circle width=2.22 label="" style=filled]
26
+ 5 [color="#0000ff80"]
27
+ 6 [color="#ee00ee80"]
28
+ 1 [color="#ff000080"]
29
+ 2 [color="#eeee0080"]
30
+ 3 [color="#00ff0080"]
31
+ 4 [color="#00eeee80"]
32
+ 1 -- 2 -- 3 -- 4 -- 5 -- 6 -- 1
33
+ }
34
+ ''')
35
+
36
  st.graphviz_chart('''
37
  digraph UML_Class_diagram {
38
  fontname="Helvetica,Arial,sans-serif"