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

It is extremely useful to be able to set the colorscale when using PlotlyJS for a dataframe with discrete groups, eg: ```julia plot(df, x = :x, y = :y, color...

**Describe the bug** When I try to prevent modeBar to appear or be static, it is still visible! Also modeBarButtonsToRemove is ignored, I tried examples from here https://plotly.com/julia/configuration-options/ **Version info**...

**Describe the bug** running from shell and it pops a window but exits before plot shows. ![深度截图_选择区域_20220823210727.png](https://s2.loli.net/2022/08/23/y8VAEwolk1LHONt.png) running in vscode can normally display plots **Version info** ``` julia> versioninfo() Julia...

**Describe the bug** PlotlyBase.jl currently refers to [v2.3.0](https://github.com/sglyon/PlotlyBase.jl/blob/2a5c8b87679ced5af7ac3894950ef0ea845eaa61/src/output.jl#L15) instead of Plotly.js [v2.4.1](https://github.com/plotly/plotly.js/releases/tag/v2.4.1) Is there a chance that there will be next version of both `PlotlyJS` as well as `PlotlyBase.jl`? See...

**Describe the bug** I am not able to apply any styles as mentioned in the documentation. It seems that neither the ``use_styles!()`` function or style parameter in the ``plot()`` function...

For [MATLAB](https://plotly.com/matlab/imshow/), [Python](https://plotly.com/python/imshow/) and [JS](https://plotly.com/javascript/reference/image/#image) there is a support for the `image` type of trace. It would be great to have it in Julia as well. By the way, please...

Plotting time series with the data type Date works as expected ``` df1 = DataFrame(a=Date[Date("2023-10-20"), Date("2023-10-21"), Date("2023-10-22"), Date("2023-10-23")], b=Int[1, 2, 3, 2]) p1 = plot(df1, x=:a, y=:b) ``` Result: ![plot-1](https://github.com/JuliaPlots/PlotlyJS.jl/assets/1370470/de1e8b83-ad98-49a1-bbad-732650adb358)...

Disclaimer: This PR is not-entirely-serious, and is mostly intended to start a discussion. Blink is a large dependency with a correspondingly large load time (`@time using Blink # 2.42 seconds...

Not all documentation source files available in repo. For examples when trying to access source for https://juliaplots.org/PlotlyJS.jl/stable/styles/ on Github via link "Edit on GitHub" I get 404 page: https://github.com/JuliaPlots/PlotlyJS.jl/blob/master/docs/src/styles.md The...

Example: ``` plt=Plot(image(z=rand(0:255, (3, 6, 4)), colormodel="rgb", x0=1, y0=1), Layout(width=500, height=335)) ``` ![wrong-image](https://github.com/JuliaPlots/PlotlyJS.jl/assets/3627253/a84d78a9-1426-40f7-846a-042dcb891a37) To get the right image the following `permutedims` of the array of size (d, rows, cols) =...