Closed PetrKryslUCSD closed 1 year ago
Would it make sense to allow the plot to accept a Config argument? To accommodate for instance
Config
t = PlotlyLight.Config(x = nths, y = y) t.name = "$(version)" t.mode = "markers+lines" t.marker = Config(symbol = "square", size = 12) p(t) # instead of: push!(p.data, t)
Seems reasonable enough! I added it and a new release is pending.
Fantastic!
Would it make sense to allow the plot to accept a
Config
argument? To accommodate for instance