PlotlyLight.jl
PlotlyLight.jl copied to clipboard
Plotly.js via Julia made easy.
Use the [Plotly JSON chart schema](https://plotly.com/chart-studio-help/json-chart-schema/) to check a user's input into a plot.
README is getting unruly and we could use some proper documentation.
Not everyone knows Plotly.JS There should be a link to a tutorials, etc. on how to use Plotly in the readme.
This is the code I use: ```julia using PlotlyLight; preset.template.plotly_dark!(); p = plot(x = 1:20, y = cumsum(randn(20)), type="scatter", mode="lines+markers"); p.layout.title.text = raw"$\frac{1}{2}$" p ``` The result:  On VS...
Hello, we have embedded PlotlyLight into a compiled Julia application but it is facing some weird relocatability issues. ```julia SystemError: opening file "/root/.julia/artifacts/aa67a2d0c294419c5568a236d0fdf8de18af2bd6/templates/plotly_white.json": No such file or directory Stacktrace: [1]...
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),...
Add more examples for different types of plots listed in the document, ``` julia> plot. # bar barpolar box candlestick # carpet choropleth choroplethmapbox cone # contour contourcarpet densitymapbox funnel...
Welcome to [Renovate](https://redirect.github.com/renovatebot/renovate)! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin. 🚦 To activate Renovate, merge this Pull Request. To disable...
Hi, thanks a lot for maintaining PlotlyLight.jl! Currently the `plotly_artifacts` artifact points to https://github.com/JuliaComputing/PlotlyLight.jl/blob/c7f70353344ca2b73c8c2fa80cf7ff2a79cc1cac/Artifacts.toml#L6 Inside that artifact, `version.txt` is `v3.0.1`, so PlotlyLight loads plotly.js v3.0.1. The latest plotly.js is v3.3.0....