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 such code ```julia using StatsBase, PlotlyJS, DataFrames let nums = rand(1:10, 100) cm = countmap(nums) xs = collect(keys(cm)) ys = collect(values(cm)) df = DataFrame(xs =...

**Describe the bug** Blank Plot when plotting in browser with VSCode setting "Julia: Use Plot Pane" unchecked simple scatter plot with: ``` plt = PlotlyJS.Plot(...) ``` Couple days ago it...

I am not able to produce any plots at all when running julia multi-threaded. I have attached the stacktrace as a separate file ([plotlyjs_threaded.log](https://github.com/JuliaPlots/PlotlyJS.jl/files/11592480/plotlyjs_threaded.log)), but as an example, something simple...

**Describe the bug** _A clear and concise description of what the bug is._ I can not export a stand-alone / off-line-ready html-figure. It is not clear, how to use the...

**Describe the bug** When saving a plot which contains legend groups and legend group titles, the legend group title go missing in the output file depending on file type. PNG...

Example of heatmap defined such that to display on hover, both the corresponding z-value and a string pointing out, let us say, the data class or category: ``` using PlotlyJS...

The first 1 or 2 times calling `plot` works fine; an electron window will open with the plot displayed. On any subsequent calls, the plotting produces the following error: ```...

**Describe the bug** Assume we have a series of boxplots: ```jl julia> boxplots = [box(x=repeat(1:5,10), y=vec(randn(5, 10))) for _ in 1:3] ``` If I put these traces inside a plot,...

The issue exist on both OS, linux (ubuntu) as well as windows: https://github.com/JuliaPlots/PlotlyJS.jl/issues/284 The Backtrace on my linux OS is: ``` ERROR: Transform failed with error code 256: PDF to...

This PR depends on [JuliaGizmos/WebIO.jl #497](https://github.com/JuliaGizmos/WebIO.jl/pull/497) and/or [JuliaGizmos/WebIO.jl #498](https://github.com/JuliaGizmos/WebIO.jl/pull/498). For a while now, plot modifying functions (e.g. `add_vline!`, etc) did not actually update the existing plot in Jupyter, and the...