add strokewidth and bar_width for plotly's bar

This commit is contained in:
Josh Day 2017-12-12 15:15:12 -05:00
parent 5d2c630b05
commit f80afddd8f

View File

@ -541,7 +541,10 @@ function plotly_series(plt::Plot, series::Series)
else
y, x, "h"
end
d_out[:marker] = KW(:color => rgba_string(series[:fillcolor]))
d_out[:width] = series[:bar_width]
info(series[:strokewidth])
d_out[:marker] = KW(:color => rgba_string(series[:fillcolor]),
:width => series[:strokewidth])
elseif st == :heatmap
d_out[:type] = "heatmap"