Skip to content

Latest commit

 

History

History
36 lines (22 loc) · 1.38 KB

README.md

File metadata and controls

36 lines (22 loc) · 1.38 KB

Build status Codecov

PlotlyLight

PlotlyLight is an ultra-lightweight interface for working with Plotly.js.



✨ Features



🚀 Quickstart

using PlotlyLight

preset.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