From ba564671314ff6cb5579683d3322a62f81a8a9fd Mon Sep 17 00:00:00 2001 From: Anand Bisen Date: Thu, 4 Apr 2024 11:17:00 -0700 Subject: [PATCH] fix example in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 306c020..fe1eed9 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ 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 = plot(x = 1:20, y = cumsum(randn(20)), type=:scatter, mode="lines+markers") # Make plot p.layout.title.text = "My Title!" # Make changes