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
"Games can be over in a myriad of ways, either by checkmate, draw, player resignation, or when a player runs out of time. Filter the games by these conditions here."
119
+
),
120
+
],
121
+
trigger="hover",
122
+
target="dropdown_status",
123
+
placement="left",
124
+
)
114
125
126
+
popover_time_control=dbc.Popover(
127
+
[
128
+
dbc.PopoverHeader("Time Control Filter"),
129
+
dbc.PopoverBody(
130
+
"Players have a specific time to make their moves. The games in the dataset follow this convention: Bullet Games (0-3 minutes), Blitz(3-10 minutes), Classical(10 minutes+). Note: Lichess uses a slight different system today."
131
+
),
132
+
],
133
+
trigger="hover",
134
+
target="dropdown_time_control",
135
+
placement="left",
136
+
)
115
137
116
-
popover_status=dbc.Popover([
117
-
dbc.PopoverHeader("Status of the Game"),
118
-
dbc.PopoverBody("Games can be over in a myriad of ways, either by checkmate, draw, player resignation, or when a player runs out of time. Filter the games by these conditions here."),
dbc.PopoverBody("Players have a specific time to make their moves. The games in the dataset follow this convention: Bullet Games (0-3 minutes), Blitz(3-10 minutes), Classical(10 minutes+). Note: Lichess uses a slight different system today."),
dbc.Button("About this Visualization",id="abt_us"),
135
-
dbc.Popover([
136
-
dbc.PopoverHeader("Powered by Lichess"),
137
-
dbc.PopoverBody("This visualization is powered by a dataset of games played in April, 2017, sourced from the publically available lichess database.\nAuthors:Frederico Santos, Rupesh Baradi, Tiago Ramos.\nNova IMS,Data Visualization Course, 2021."),
138
-
],trigger="click",target="abt_us"),"stuff"])
138
+
popover_game_type=dbc.Popover(
139
+
[
140
+
dbc.PopoverHeader("Type of Competitive Setting"),
141
+
dbc.PopoverBody(
142
+
"This dataset contains games played in specific tournaments, hosted by Lichess."
143
+
),
144
+
],
145
+
trigger="hover",
146
+
target="dropdown_game_type",
147
+
placement="left",
148
+
)
139
149
150
+
about_this=html.Div(
151
+
[
152
+
dbc.Button("About this Visualization", id="abt_us"),
153
+
dbc.Popover(
154
+
[
155
+
dbc.PopoverHeader("Powered by Lichess"),
156
+
dbc.PopoverBody(
157
+
"This visualization is powered by a dataset of games played in April, 2017, sourced from the publically available lichess database.\nAuthors:Frederico Santos, Rupesh Baradi, Tiago Ramos.\nNova IMS,Data Visualization Course, 2021."
0 commit comments