Skip to content

Commit

Permalink
Fixed labels bug in plotrecipes.jl (#431)
Browse files Browse the repository at this point in the history
Fixes #430
  • Loading branch information
ValentinKaisermayer authored and iblislin committed Oct 6, 2019
1 parent 020214f commit ee109af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plotrecipes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# ta, ohlc = extract_ohlc(ta)
# collect(zip(ohlc)) # But there are currently issues with that
else
labels --> reshape(String.(colnames(ta)),1,length(colnames(ta)))
labels --> get(plotattributes, :label, reshape(String.(colnames(ta)),1,length(colnames(ta))))
seriestype := st
timestamp(ta), values(ta)
end
Expand Down

0 comments on commit ee109af

Please sign in to comment.