We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The x-axis has data labels on both the top and the bottom which looks a bit cluttered.
It should be easy to customize the x-axis, please create documentation for.
coarse.time=TRUE||FALSE
format.labels <- ' '
### basic getSymbols("GM") chart_Series(GM, subset='2012::2019')
### blanking bottom label, though the whitespace still persists getSymbols("GM") ct <- chart_theme() ct$format.labels <- ' ' chart_Series(GM, subset='2012::2019', theme=ct)
getSymbols("GM") ct <- chart_theme() ct$coarse.time <- FALSE ### removes the label above the x-axis chart_Series(GM, subset='2012::2019', theme=ct)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
The x-axis has data labels on both the top and the bottom which looks a bit cluttered.
Expected behavior
It should be easy to customize the x-axis, please create documentation for.
coarse.time=TRUE||FALSE
format.labels <- ' '
Minimal, reproducible example
The text was updated successfully, but these errors were encountered: