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

The following code ```` using Plots plotlyjs() # without this line, this code generates a static graph. plot(0:10, sin.((0:10)/3)) ```` keeps emitting ```` UndefVarError: setexcludinghandlers! not defined Stacktrace: [1] set_nosync(ob::Observables.Observable{Dict{Any,...

**versioninfo():** Julia Version 1.7.3 Commit 742b9abb4d (2022-05-06 12:58 UTC) Platform Info: OS: Linux (x86_64-pc-linux-gnu) CPU: Intel(R) Core(TM) i7-6700HQ CPU @ 2.60GHz WORD_SIZE: 64 LIBM: libopenlibm LLVM: libLLVM-12.0.1 (ORCJIT, skylake) **The...

I get this error after I have wiped out `.julia` and re-installed all packages for an unrelated reason. The solution from #172 does not work anymore: ``` julia> versioninfo() Julia...

**Describe the bug** Small self-contained example: ``` using Plots plotlyjs(); scatter([0], [0]) ``` results in: ![newplot](https://user-images.githubusercontent.com/88600/170092230-3b37b263-f843-4b04-957e-f91e5741f8b3.png) Clicking on `y1` in legend results in: ![newplot (1)](https://user-images.githubusercontent.com/88600/170092344-67857b27-3116-4fa7-a082-ea74c0593d93.png) The entirety of the plot...

**Describe the bug** plot() command can be executed, attempt to save plot to file fails. The error is reproducable, it is related to the amount of points that should be...

It appears (https://github.com/JuliaComputing/PlotlyLight.jl/issues/8) that `PlotlyJS.savefig` works out of the box for `PlotlyLight.Plot`s if you simply remove the type annotations in the `savefig` code. How would ya'll feel about one of...

I created some map images following [these example code](http://juliaplots.org/PlotlyJS.jl/stable/examples/maps/). I was wondering how to save the figure in high resolution (e.g dpi=300)? I tried including `dpi=300` in `Layout`, but it...

When I tried to save a jpeg figure using PlotlyJS, it fails on M1 mac running Julia v1.7. The same example runs fine on a Intel mac: ``` using PlotlyJS...

``` Julia 1.6.3 PlotlyJS 0.18.8 Plots 1.22.4 ``` Why the modebar button ``` Compare data on hover ``` is not available in PlotlyJS ? ```julia using PlotlyJS t = range(0,...

replace `vect` syntax by `vcat` syntax for generation of subplots as the vect syntax has been removed