Description
Cannot hide vertical axis through custom theme when add_TA is present in chart_Series.
Expected behavior
add_TA should not interfere with the selected theme. add_BBands, for example, behaves correctly.
Minimal, reproducible example
getSymbols('T', from='2017-06-06')
myTheme <- chart_theme()
myTheme$rylab <- FALSE # hide right y-axis
chart_Series(T, theme=myTheme) # works ok
chart_Series(T, theme=myTheme, TA='add_TA(EMA(Cl(T)), on=1)') # does not hide axis
Description
Cannot hide vertical axis through custom theme when add_TA is present in chart_Series.
Expected behavior
add_TA should not interfere with the selected theme. add_BBands, for example, behaves correctly.
Minimal, reproducible example