PlotlyJS.jl icon indicating copy to clipboard operation
PlotlyJS.jl copied to clipboard

Julia library for plotting with plotly.js

Results 112 PlotlyJS.jl issues
Sort by recently updated
recently updated
newest added

**Describe the bug** I have difficulty in reproducing precisely the bug. When I start a new jupyter notebook, and run `using Plots` `plotlyjs()` `plot(1:30,rand(30))` I get (often) `[17801:0516/093408.632872:ERROR:buffer_manager.cc(488)] [.DisplayCompositor]GL ERROR...

help wanted

I think it would be nice if the plot window resized itself to fit the plot contents when the plot is first displayed. It seems that right now, the behavior...

help wanted

is it not possible to create an interactive graphic with two plots? one button and one plot works, but not two plots. ``` julia> using Interact, Mux, PlotlyJS, WebIO julia>...

help wanted

I am trying to plot a series of boxplot following http://spencerlyon.com/PlotlyJS.jl/examples/box_plots/ and export it to a static file. However, I am getting errors running the following code: **Code** ``` using...

help wanted

```Julia using PlotlyJS p1 = scatter3d(;x=randn(100),y=randn(100),z=randn(100)) p2 = scatter3d(;x=randn(100),y=randn(100),z=randn(100)) p3 = scatter3d(;x=randn(100),y=randn(100),z=randn(100)) p4 = scatter3d(;x=randn(100),y=randn(100),z=randn(100)) p = [plot(p1) plot(p2); plot(p3) plot(p4)] ``` Running this code, I get the plots next...

**Describe the bug** When trying to access the "customdata" field during plotly events, no data is returned to Julia even though such data exists in the original plot data. I...

Trying to write latex equations as title/labels won't work. If I type in `"\$\\frac{x}{y}\$"` it just returns `$\frac{x}{y}$` as a title. The same is when trying to use LaTeXStrings both...

I'm trying to create a box plot where the names of the boxes are numbers. The problem is that if I use something like `box(;y=cond10, name="10")` and similarly for the...

**Describe the bug** When I make subplots with a 3D plot, it becomes centralized in the collated output. ``` a = plot(rand(10)) b = plot(rand(10)) c = plot(rand(10)) d =plot(rand(10),...

I am trapping the on-click event on a plotlyjs graph. In the REPL everything works fine, but in n Jupyter notebook there is no sign of an event happening. The...