From 3d323a734dffa5fa3fd4fdf8db955d14057613b8 Mon Sep 17 00:00:00 2001 From: Josh Day Date: Fri, 15 Dec 2017 00:21:44 -0500 Subject: [PATCH] fix plotly histogram --- src/backends/plotly.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backends/plotly.jl b/src/backends/plotly.jl index 85ae90bf..70bb7ea9 100644 --- a/src/backends/plotly.jl +++ b/src/backends/plotly.jl @@ -543,7 +543,7 @@ function plotly_series(plt::Plot, series::Series) end d_out[:width] = series[:bar_width] d_out[:marker] = KW(:color => rgba_string(series[:fillcolor]), - :width => series[:strokewidth]) + :line => KW(:width => series[:linewidth])) elseif st == :heatmap d_out[:type] = "heatmap"