-
-
Notifications
You must be signed in to change notification settings - Fork 112
Closed
Labels
TRIAGERequires triage or initial assessmentRequires triage or initial assessment
Description
ALL software version info
(this library, plus any other relevant software, e.g. bokeh, python, notebook, OS, browser, etc should be added within the dropdown below.)
Software Version Info
Python 3.12
Linux
bokeh 3.7.2
holoviews 1.20.2
hvplot 0.11.3
vscode 1.100.2
Description of expected behavior and the observed behavior
I expect all buttons of a simple plot to work. For example, clicking on the save button doesn't do anything.
Complete, minimal, self-contained example code that reproduces the issue
import pandas as pd
import numpy as np
import hvplot.pandas
rng = np.random.default_rng(42)
data = pd.DataFrame({
'x': np.linspace(0, 10, 100),
'y': np.sin(np.linspace(0, 10, 100)) + rng.normal(0, 0.1, 100)
})
plot = data.hvplot.line(x='x', y='y', title='Simple Line Plot')
plot
Screenshots or screencasts of the bug in action
Screencast.from.2025-06-04.10-45-14.webm
- I may be interested in making a pull request to address this
Metadata
Metadata
Assignees
Labels
TRIAGERequires triage or initial assessmentRequires triage or initial assessment