Skip to content

Buttons don't work in vscode #1598

@Zethson

Description

@Zethson

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

No one assigned

    Labels

    TRIAGERequires triage or initial assessment

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions