- Notifications
You must be signed in to change notification settings - Fork10
Fast Lightweight Plotly.js Wrapper for Julia
License
NotificationsYou must be signed in to change notification settings
JuliaComputing/PlotlyLight.jl
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
PlotlyLight is an ultra-lightweight interface for working withPlotly.js.
- 🚀 Fastest time-to-first-plot in Julia!
- 🌐 Use thePlotly.js Javascript documentation directly. No magic syntax: Just
JSON3.write
. - 📂 Set deeply-nested keys easily, e.g.
myplot.layout.xaxis.title.font.family = "Arial"
. - 📊 The Samebuilt-in themes as Plotly's python package.
using PlotlyLightpreset.template.plotly_dark!()# Change templatep=plot(x=1:20, y=cumsum(randn(20)), type="scatter", mode="lines+markers")# Make plotp.layout.title.text="My Title!"# Make changesp# `display(p)` to see the updated plot
About
Fast Lightweight Plotly.js Wrapper for Julia