Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/JuliaComputing/PlotlyLight.jl
Plotly.js via Julia made easy.
https://github.com/JuliaComputing/PlotlyLight.jl
data-viz julia plotlyjs plotting
Last synced: 14 days ago
JSON representation
Plotly.js via Julia made easy.
- Host: GitHub
- URL: https://github.com/JuliaComputing/PlotlyLight.jl
- Owner: JuliaComputing
- License: other
- Created: 2020-03-25T15:52:56.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-10-15T19:04:21.000Z (28 days ago)
- Last Synced: 2024-10-17T03:32:19.411Z (27 days ago)
- Topics: data-viz, julia, plotlyjs, plotting
- Language: Julia
- Homepage: https://juliacomputing.github.io/PlotlyLight.jl/
- Size: 1.36 MB
- Stars: 98
- Watchers: 4
- Forks: 7
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build status](https://github.com/JuliaComputing/PlotlyLight.jl/workflows/CI/badge.svg)](https://github.com/JuliaComputing/PlotlyLight.jl/actions?query=workflow%3ACI+branch%3Amaster)
[![Codecov](https://codecov.io/gh/JuliaComputing/PlotlyLight.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaComputing/PlotlyLight.jl)PlotlyLight
PlotlyLight is an ultra-lightweight interface for working with Plotly.js.
## ✨ Features
- 🚀 Fastest time-to-first-plot in Julia!
- 🌐 Use the [Plotly.js Javascript documentation](https://plotly.com/javascript/) directly. No magic syntax: Just [`JSON3.write`](https://github.com/quinnj/JSON3.jl).
- 📂 Set deeply-nested keys easily, e.g. `myplot.layout.xaxis.title.font.family = "Arial"`.
- 📊 The Same [built-in themes](https://plotly.com/python/templates/) as Plotly's python package.
## 🚀 Quickstart
```julia
using PlotlyLightpreset.template.plotly_dark!() # Change template
p = plot(x = 1:20, y = cumsum(randn(20)), type="scatter", mode="lines+markers") # Make plot
p.layout.title.text = "My Title!" # Make changes
p # `display(p)` to see the updated plot
```