Spaces:
Runtime error
Runtime error
disabled hover functionality to debug
Browse files
app.py
CHANGED
|
@@ -89,9 +89,9 @@ def bokehplots():
|
|
| 89 |
color=Category20[3][1], legend_label='Likes', y_range_name='likes')
|
| 90 |
|
| 91 |
# Create a HoverTool object and specify the information to display in the tooltip
|
| 92 |
-
hover = HoverTool(tooltips=[('authors', '@authors'), ('downloads', '@downloads'), ('likes', '@likes')])
|
| 93 |
# Add the HoverTool to the plot
|
| 94 |
-
p.add_tools(hover)
|
| 95 |
|
| 96 |
# remove grid lines
|
| 97 |
p.xgrid.grid_line_color = None
|
|
|
|
| 89 |
color=Category20[3][1], legend_label='Likes', y_range_name='likes')
|
| 90 |
|
| 91 |
# Create a HoverTool object and specify the information to display in the tooltip
|
| 92 |
+
#hover = HoverTool(tooltips=[('authors', '@authors'), ('downloads', '@downloads'), ('likes', '@likes')])
|
| 93 |
# Add the HoverTool to the plot
|
| 94 |
+
#p.add_tools(hover)
|
| 95 |
|
| 96 |
# remove grid lines
|
| 97 |
p.xgrid.grid_line_color = None
|