From ee109af40e02cbf8d4a2d38d519c5ff2305d2c57 Mon Sep 17 00:00:00 2001 From: ohmsweetohm1 <50108075+ohmsweetohm1@users.noreply.github.com> Date: Sun, 6 Oct 2019 16:34:12 +0200 Subject: [PATCH] Fixed labels bug in plotrecipes.jl (#431) Fixes #430 --- src/plotrecipes.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plotrecipes.jl b/src/plotrecipes.jl index 20a15700..7eaa16c2 100644 --- a/src/plotrecipes.jl +++ b/src/plotrecipes.jl @@ -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