fix plotly horizontal bars

This commit is contained in:
Thomas Breloff 2016-10-07 13:49:00 -04:00
parent f615a5d05e
commit 14fd3c94b5

View File

@ -30,6 +30,7 @@ const _plotly_attr = merge_with_base_supported([
:aspect_ratio,
:hover,
:inset_subplots,
:bar_width,
])
const _plotly_seriestype = [
@ -423,8 +424,11 @@ function plotly_series(plt::Plot, series::Series)
elseif st == :bar
d_out[:type] = "bar"
d_out[:x], d_out[:y] = x, y
d_out[:orientation] = isvertical(series) ? "v" : "h"
d_out[:x], d_out[:y], d_out[:orientation] = if isvertical(series)
x, y, "v"
else
y, x, "h"
end
d_out[:marker] = KW(:color => rgba_string(series[:fillcolor]))
elseif st == :heatmap