JuliaPlots / JuliaPlots/PlotlyLight.jl

Plots in jupyter-lab are displayed inside a scrolling window

Open
#48 2 comments 0 reactions 0 assignees View on GitHub
Dominant language
Julia
Stars
112
Forks
10
PR merge metrics
No merged PRs in 30d

Description

If by using layout `height` is increased the resulting plot is displayed inside a scrolling window. Here is the MWE

```julia
using PlotlyLight, DataFrames

n = 100
df = DataFrame(x=rand(n), y=rand(n))

layout = Config(height=800)
trace = Config(x=df.x, y=df.y, type="scatter", mode="markers")
Plot([trace], layout)
```

In python jupyter's output cell adapts to the size of the plot, resulting in a fully visible plot. Is this something that could be addressed from the package?

Jupyter Lab = 4.2.5
Julia = 1.11

![Image](https://github.com/user-attachments/assets/a2b6845b-d4e7-4d75-a553-f3a7ab33be06)

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.