You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -29,6 +53,8 @@ function startTour(force_start){
29
53
// autoscroll: true, // doesn't seem to work
30
54
orphan: true,
31
55
debug: true,
56
+
onNext: next,
57
+
onPrev: prev,
32
58
steps: [
33
59
{
34
60
content: "Welcome to the result visualisation of our <a href='https://w3id.org/associations/#gp_learner'>graph pattern learner</a>.<br>As the interface is quite powerful, this tour will briefly explain its components."
@@ -63,10 +89,47 @@ function startTour(force_start){
63
89
placement: 'left',
64
90
content: "You can also execute the SPARQL query for the current pattern pre-filled with the individual source node."
65
91
},
92
+
{
93
+
element: '#sidebar-SPARQL-panel',
94
+
onShow: autoScrollSideBar,
95
+
placement: 'left',
96
+
content: "Here you can find the SPARQL SELECT query for the selected pattern that was learned and can execute it."
97
+
},
98
+
{
99
+
element: '#graph svg>g',
100
+
onShown: fixupSVGHighlighting,
101
+
onHide: fixupSVGHighlightingRemove,
102
+
content: "Instead of reading the ugly text version on the right, here you see a graphical representation of the pattern."
103
+
},
66
104
{
67
105
element: '#graph svg>g',
68
106
onShown: fixupSVGHighlighting,
69
-
content: "This is a tooltip."
107
+
onHide: fixupSVGHighlightingRemove,
108
+
content: "The ?source and ?target are special variables that were filled with the ground truth pairs on listed on the right during training."
109
+
},
110
+
{
111
+
element: '#sidebar-select-panel',
112
+
onShow: autoScrollSideBar,
113
+
placement: 'left',
114
+
backdrop: false,
115
+
reflex: true,
116
+
content: "Select another pattern and see how everything else is updated..."
content: "The matrix tab gives an overview about how the patterns cover the ground truth pairs. Each block represents one ground truth pair. Just hover over them to see how the currently selected graph pattern covers each of them."
0 commit comments